GET
/
api
/
webhooks
/
configs
curl --request GET \
  --url http://localhost:55001/api/webhooks/configs \
  --header 'Authorization: Bearer <token>'
{
  "cursor": {
    "hasMore": false,
    "data": [
      {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "endpoint": "https://example.com",
        "secret": "V0bivxRWveaoz08afqjU6Ko/jwO0Cb+3",
        "eventTypes": {
          "0": "TYPE1",
          "1": "TYPE2"
        },
        "active": true,
        "createdAt": "2023-11-07T05:31:56Z",
        "updatedAt": "2023-11-07T05:31:56Z"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Query Parameters

id
string

Optional filter by Config ID

Example:

"4997257d-dfb6-445b-929c-cbe2ab182818"

endpoint
string

Optional filter by endpoint URL

Example:

"https://example.com"

Response

200
application/json

OK

The response is of type object.