Skip to main content
GET
/
api
/
v1
/
mgt
/
workspaces
/
{workspaceId}
/
webhook-subscriptions
List Webhook Subscriptions
curl --request GET \
  --url https://api.xenia.team/api/v1/mgt/workspaces/{workspaceId}/webhook-subscriptions \
  --header 'x-client-key: <api-key>' \
  --header 'x-client-secret: <api-key>'
{
  "status": true,
  "code": 123,
  "data": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "name": "<string>",
      "url": "<string>",
      "events": [
        "<string>"
      ],
      "description": "<string>",
      "isActive": true,
      "status": "<string>",
      "rateLimit": 123,
      "metadata": {},
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z"
    }
  ],
  "pagination": {
    "total": 123,
    "limit": 123,
    "offset": 123,
    "hasMore": true
  }
}

Authorizations

x-client-key
string
header
required
x-client-secret
string
header
required

Path Parameters

workspaceId
string<uuid>
required

Workspace ID

Query Parameters

limit
integer
default:50

Number of results to return

Required range: x <= 100
offset
integer
default:0

Number of results to skip

status
enum<string>

Filter by subscription status

Available options:
active,
inactive,
all

Response

Subscriptions retrieved successfully

status
boolean
code
integer
data
object[]
pagination
object