ApiResourcesStore settings

List notification channels

List email and Discord dashboard-notification destinations.

Discord webhook URLs are never serialized.

GET
/v2/store/notification-channels

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

Response Body

application/json

application/json

application/json

application/json

curl -X GET "https://sell.app/api/v2/store/notification-channels"
{
  "data": [
    {
      "id": 0,
      "type": "email",
      "email": "user@example.com",
      "channel": "string",
      "webhook_configured": true,
      "allowed_notifications": [
        "string"
      ]
    }
  ]
}
{
  "message": "Unauthenticated."
}
{
  "message": "This action is unauthorized."
}
{
  "message": "The given data was invalid.",
  "errors": {
    "data": [
      "The data field is required."
    ]
  }
}