GET
/
webhookEndpoints
curl --request GET \
  --url https://backendapi.corbado.io/v2/webhookEndpoints \
  --header 'Authorization: Basic <encoded-value>'
{
  "webhookEndpoints": [
    {
      "id": "<string>",
      "url": "<string>",
      "basicAuthUsername": "<string>",
      "basicAuthPassword": "<string>",
      "customHeaders": {},
      "subscribedEvents": [
        "passkey-login.completed"
      ],
      "created": "<string>",
      "createdMs": 123,
      "updated": "<string>",
      "updatedMs": 123
    }
  ]
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Response

200
application/json

List of webhook endpoints

The response is of type object.