Path parameters
-
The unique identifier of the hook.
Query parameters
-
includeExecutionStats string
Whether to include execution stats in the response.
GET /api/hooks/{id}
curl \
-X GET https://[tenant_id].logto.app/api/hooks/{id} \
-H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"tenantId": "string",
"id": "string",
"name": "string",
"event": "PostRegister",
"events": [
"PostRegister"
],
"config": {
"url": "string",
"headers": {
"additionalProperty1": "string",
"additionalProperty2": "string"
},
"retries": 42.0
},
"signingKey": "string",
"enabled": true,
"createdAt": 42.0,
"executionStats": {
"successCount": 42.0,
"requestCount": 42.0
}
}