ResourcesWebhook Channels

Retrieve a webhook channel

Retrieve one destination by its stable UUID.

GET
/v2/webhook-channels/{webhookChannel}

Authorization

bearerAuth storeAuth
AuthorizationBearer <token>

Provide your SellApp API key as a bearer token.

In: header

X-STORE<token>

Select the SellApp store for this API request.

In: header

Path Parameters

webhookChannel*string

The stable webhook channel UUID.

Formatuuid

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://sell.app/api/v2/webhook-channels/497f6eca-6276-4993-bfeb-53cbbbba6f08"
{
  "data": {
    "id": "0f33d01f-f9f8-45e8-80c8-7734d057196d",
    "name": "Order automation",
    "url": "https://example.com/sellapp/webhooks",
    "allowed_notifications": [
      "order.created",
      "order.paid"
    ],
    "signing_secret_configured": true
  }
}
{
  "message": "Unauthenticated."
}
{
  "message": "This action is unauthorized."
}
{
  "message": "Rule not found."
}
{
  "message": "The given data was invalid.",
  "errors": {
    "data": [
      "The data field is required."
    ]
  }
}