Skip to main content
PATCH
/
v1
/
calls
/
{uuid}
Update a call
curl --request PATCH \
  --url https://api.wavix.com/v1/calls/{uuid} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "tag": "marketing-campaign"
}
'
{
  "success": true
}

Authorizations

Authorization
string
header
required

Bearer token using appid (Authorization: Bearer )

Path Parameters

uuid
string<uuid>
required

Call ID.

Body

application/json

Call parameters to update.

tag
string
required

Call metadata.

Example:

"marketing-campaign"

Response

Call updated.

success
boolean
required

Indicates whether the request was successful.

Example:

true