MANGOTEEPRINTS
  1. Webhooks
MANGOTEEPRINTS
  • Overview
  • Change log
  • Production Lines
    • List Production Lines
      GET
  • Catalog
    • Get Catalogs
      GET
    • Get Catalog Detail
      GET
  • Products
    • Get Products
      GET
    • Get Product Detail
      GET
    • Get Product Variations
      GET
  • Orders
    • Create Order
      POST
    • List Orders
      GET
    • Get Order Detail
      GET
    • Update Order
      PUT
    • Delete Order
      DELETE
    • Cancel Order
      POST
  • Webhooks
    • Create Webhook
      POST
    • List Webhooks
      GET
    • Get Webhook
      GET
    • Update Webhook
      PUT
    • Delete Webhook
      DELETE
  • Schemas
    • Schemas
      • ShippingMethod Copy
      • CancelOrderData
      • CancelOrderResponse
      • CatalogsListData
      • CreateOrderResponse
      • FacilityType
      • GenericWebhookRequest
      • GetOrderResponse
      • GetProductionLineResponse
      • HTTPValidationError
      • InsertSchema
      • ListOrdersResponse
      • ListProductionLinesResponse
      • OrderCancelSchema
      • OrderCreateSchema
      • OrderItemResponseSchema
      • OrderItemSchema
      • OrderListData
      • OrderResponseSchema
      • OrderStatus
      • OrderUpdateSchema
      • PaginationInfo
      • PrintFileSchema
      • ProductionLineListData
      • ProductionLineSchema
      • ProductsListData
      • PublicBaseResponse
      • PublicCatalogDetailResponse
      • PublicCatalogResponse
      • PublicCatalogsListResponse
      • PublicProductDetailResponse
      • PublicProductResponse
      • PublicProductsListResponse
      • PublicVariationResponse
      • PublicVariationsListResponse
      • ShippingMethod
      • SpeedType
      • TrackingEventSchema
      • UpdateOrderResponse
      • ValidationError
      • VariationsListData
      • WebhookCreate
      • WebhookEvent
      • WebhookListResponse
      • WebhookUpdate
      • WebhookResponse
      • WebhookResponse
  1. Webhooks

List Webhooks

GET
https://v3.mangoteeprints.com/api/public/v1/webhooks
Last modified:2025-08-22 08:10:05
List all webhooks for the current user.
Returns all webhook subscriptions including their status and health information.

Request

Header Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://v3.mangoteeprints.com/api/public/v1/webhooks' \
--header 'X-API-Key;'

Responses

🟢200Successful Response
application/json
Body

Example
{
    "success": true,
    "total": 1,
    "webhooks": [
        {
            "created_at": "2024-01-15 10:30:00",
            "events": [
                "order.status",
                "order.shipment"
            ],
            "failure_count": "0",
            "id": "123e4567-e89b-12d3-a456-426614174000",
            "is_active": true,
            "last_status_code": "200",
            "last_triggered_at": "2024-01-15 11:00:00",
            "name": "My Order Updates",
            "updated_at": "2024-01-15 10:30:00",
            "url": "https://example.com/webhook"
        }
    ]
}
🟠422Validation Error
Modified at 2025-08-22 08:10:05
Previous
Create Webhook
Next
Get Webhook
Built with