ResourcesWebhook Channels

Search webhook channels

Search destinations by name or URL and filter by event.

POST
/v2/webhook-channels/search

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

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

application/json

curl -X POST "https://sell.app/api/v2/webhook-channels/search" \  -H "Content-Type: application/json" \  -d '{    "search": {      "value": "orders"    },    "event": "order.paid"  }'
{
  "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
    }
  ],
  "links": {},
  "meta": {}
}
{
  "message": "Unauthenticated."
}
{
  "message": "This action is unauthorized."
}
{
  "message": "The given data was invalid.",
  "errors": {
    "data": [
      "The data field is required."
    ]
  }
}