Store inbound call conversion
documentedStores inbound call conversion data for a site, including call times, numbers, identifiers, and marketing overrides.
PUT /v1/{siteId}/conversion/inboundcall/uploadConversionsno implementation yet0 runsNo 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}}"}'"