GET
/
register
/
webhooks
/
{id}
curl --request GET \
  --url https://thirdparty-sandbox.staging.qonto.co/register/webhooks/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Qonto-Partner-Id: <api-key>' \
  --header 'X-Qonto-Staging-Token: <api-key>'
{
  "webhook_subscription": {
    "id": "37824615-afec-4340-b700-0981b5f0c319",
    "created_at": "2021-08-17T12:31:32.689Z",
    "updated_at": "2021-08-17T12:31:32.689Z",
    "callback_url": "https://example.com/myCallbackUrl",
    "enabled": true,
    "secret": "1qA+9OSwfnm0NuhF+b8CJA=="
  }
}

Authorizations

Authorization
string
header
required

Bearer authorization header: Bearer <token>. To get your <token>, please sign up to the Developer Portal.

Qonto-Partner-Id
string
header
required

API Key authorization header: Qonto-Partner-Id: <partner_id>. To get your <partner_id> please, sign up to the Developer Portal.

X-Qonto-Staging-Token
string
header
required

Required only for Sandbox API requests; to get one, please sign up to the Developer Portal.

Path Parameters

id
string
required

id of the Webhook resource

Example:

"f4a15ff0-40a2-48d4-8801-99c7b4e0788e"

Response

200
application/json
Returns the webhook endpoint identified by the `id` path parameter.

The response is of type object.