Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagepowershell
themeMidnight
curl -X POST "https://***.newvoicemedia.com/v0/a1b2c3d4e5/calls/94e5928c-7f7e-4645-ad72-61010f906449/dispositionCode" 
-d '{ "dispositionCode": "Wrong Number", "agentId": "1234" }' 
-H "Authorization: Bearer <ACCESS_TOKEN>" 
-H "Content-Type: application/json"

Body

...

Code Block
languagejs
themeMidnight
{
  "dispositionCode": "Wrong Number",
  "agentId": "1234"
}


Tipnote

"dispositionCode" has a minimum length of 3 characters and a maximum of 64.

...