Getting Started
Last updated
curl -XPOST \
-H 'Authorization: Bearer YOUR_API_KEY' \
-H "Content-type: application/json" \
-d '{
"event_type": "your.event.type",
"scheduled_run_time": "YOUR_SCHEDULED_TIME", // Optional
"data": {
// Your JSON payload
}
}' 'https://hostedhooks.com/api/v1/apps/:app_uuid/tasks'
{
"id": "unique-task-id",
"event_type": "your.event.type",
"status": null,
"scheduled_run_time": "YOUR_SCHEDULED_TIME",
"endpoint_id": null,
"created_at": "timestamp",
"data": {
// Your JSON payload
}
}