Class 5 App

Update

Update an existing Class 5 App record by ID.

put/api/cp/class5/app/{id}

Path parameters

idinteger required

Id identifier

Request body

idinteger

Id

account_idinteger

Account Id (references account.id)

company_idinteger

Company Id

namestring required

Name

app_type'connexml' | 'legacy' | 'callflow'

App Type

deststring

Dest

allowstring

Allow

denystring

Deny

datastring

Data

pbx_serverstring

Pbx Server

xmlstring

Xml

Example request

{
  "id": 12345,
  "account_id": 1,
  "company_id": 1,
  "name": "Example Name",
  "app_type": "connexml",
  "dest": "example_dest",
  "allow": "example_allow",
  "deny": "example_deny",
  "data": "Sample data text content",
  "pbx_server": "example_pbx_server",
  "xml": "Sample xml text content"
}

Response

Operation completed successfully

statusstring

Operation status

Example response

{
  "status": "OK"
}

Changes

No recorded changes to this endpoint across all 1 revision of this API.