Query parameters
-
includeExecutionStats string
Whether to include execution stats in the response.
-
page integer
Page number (starts from 1).
Minimum value is
1
. Default value is1
. -
page_size integer
Entries per page.
Minimum value is
1
. Default value is20
.
GET /api/hooks
curl \
-X GET https://[tenant_id].logto.app/api/hooks \
-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
}
}
]