Body
Required
-
duration
integer(int32) | null Duration
payload
object | null | array | boolean | integer | number | string Payload
response
object | null | array | boolean | integer | number | string Response
-
status
string | null Status
Values are
success
orerror
. -
trigger
string | null Trigger
-
webhookId
integer(int32) Required Webhook
POST
/webhook-payloads.json
curl \
--request POST 'http://api.example.com/v1/webhook-payloads.json' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{"duration":42,"payload":{},"response":{},"status":"success","trigger":"string","webhookId":42}'
Request examples
{
"duration": 42,
"payload": {},
"response": {},
"status": "success",
"trigger": "string",
"webhookId": 42
}
Response examples (200)
{
"createdAt": "2025-05-04T09:42:00Z",
"duration": 42,
"id": 42,
"payload": {},
"response": {},
"status": "success",
"trigger": "string",
"updatedAt": "2025-05-04T09:42:00Z",
"webhookId": 42
}