Skip to main content
All API requests must include the following headers:
HeaderTypeRequiredDescription
x-api-keyStringYesAPI key provided by PitchCRM
x-api-secretStringYesAPI secret provided by PitchCRM
x-account-idStringYesYour encrypted partner account ID

Example

curl -X POST https://partner.api.v3.pitchcrm.com/v3/partner/webhook/contact/add \
  -H "x-api-key: your_api_key" \
  -H "x-api-secret: your_api_secret" \
  -H "x-account-id: your_account_id" \
  -H "Content-Type: application/json" \
  -d '{ "email": "user@example.com" }'
Never expose your x-api-secret in client-side code or public repositories.