Sign in

Create CRM message

documented

Create a message in a CRM ticket.

POST /3dCartWebAPI/v1/CRM/MessagesCRMno 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://apirest.3dcart.com/3dCartWebAPI/v1/CRM/{{$crmid}}/message" \
  -X POST \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "SecureURL: {{SHIFT4SHOP_SECRET}}" \
  -H "PrivateKey: {{SHIFT4SHOP_API_KEY}}" \
  -H "Token: {{OAUTH2_ACCESS_TOKEN}}" \
  -d '{"Message": "{{$message}}", "Sender": {{$sender}}, "SenderName": "{{$sender_name}}", "SenderEmail": "{{$sender_email}}", "CustomerIPAddress": "{{$customer_ip_address}}"}'