Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Response
Success, webhook retrieved
curl --request GET \
--url https://api.kajabi.com/api/v1/hooks/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "<string>",
"type": "hooks",
"attributes": {
"event": "purchase",
"target_url": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"resource_id": 123
},
"relationships": {
"site": {
"data": {
"id": "<string>",
"type": "<string>"
}
}
}
}
}
Returns specific hook based on it ID
curl --request GET \
--url https://api.kajabi.com/api/v1/hooks/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "<string>",
"type": "hooks",
"attributes": {
"event": "purchase",
"target_url": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"resource_id": 123
},
"relationships": {
"site": {
"data": {
"id": "<string>",
"type": "<string>"
}
}
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Success, webhook retrieved
Show child attributes