Skip to main content

Test a webhook

POST

/partner/v1.0/webhooks/test


Test a webhook in the Pulsifi system.


Headers

  • Accept : application/json
  • Content-Type : application/json
  • Authorization : Bearer {access_token}


Body

event enum Required
The event that trigger the webhook.
  • candidate_application_result_ready
  • candidate_job_recommendation_result_ready


POST /partner/v1.0/webhooks/test
curl -X POST 'https://staging.api.pulsifi.me/partner/v1.0/webhooks/test' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer {access_token}' \
-H 'Content-Type: application/json' \
-d '{
"event": "candidate_application_result_ready"
}'