Sign in

Store inbound call conversion

documented

Stores inbound call conversion data for a site, including call times, numbers, identifiers, and marketing overrides.

PUT /v1/{siteId}/conversion/inboundcall/uploadConversionsno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl 'https://rest.rulerapi.com/v1/{{$siteId}}/conversion/inboundcall/upload' \
  -X PUT \
  -H 'Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}' \
  -H 'Content-Type: application/json' \
  -H 'Accept: application/json' \
  -d '{"StartDateTimeISO": "{{$startDateTimeISO}}", "EndDateTimeISO": "{{$endDateTimeISO}}", "CalledNumber": "{{$calledNumber}}", "CallerNumber": "{{$callerNumber}}", "Reference": "{{$reference}}", "VisitorIdentifierOptions": [{"Key": "{{$visitorKey}}", "Value": "{{$visitorValue}}"}], "RefererLabel": "{{$refererLabel}}", "AnswerTime": "{{$answerTime}}", "Result": "{{$result}}", "MarketingChannelOverride": "{{$marketingChannelOverride}}", "SourceCategoryOverride": "{{$sourceCategoryOverride}}"}'"