Skip to main content
POST
/
webhooks
/
{id}
/
test
Send a test event to the webhook
curl --request POST \
  --url https://api.juicer.io/v1/webhooks/{id}/test \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": 123,
    "event_type": "<string>",
    "payload": {},
    "resource_type": "<string>",
    "resource_id": 123,
    "created_at": "2023-11-07T05:31:56Z",
    "deliveries": [
      {
        "id": 123,
        "webhook_id": 123,
        "webhook_event_id": 123,
        "http_status": 123,
        "response_body": "<string>",
        "error_message": "<string>",
        "attempt_number": 123,
        "duration_ms": 123,
        "attempted_at": "2023-11-07T05:31:56Z",
        "created_at": "2023-11-07T05:31:56Z"
      }
    ]
  }
}

Documentation Index

Fetch the complete documentation index at: https://developers.juicer.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key prefixed with jcr_. To obtain a key programmatically (no dashboard required), see POST /v1/authorize.

Path Parameters

id
integer
required

Response

Test event created and delivery enqueued

data
object