v1

latestOpenAPI 3.0.32026-07-24156161.2 MB
Route Caller IDs (DID)

Enable/Disable Route CallerID

Update Route Caller IDs

This endpoint allows the user to update route caller IDs by sending an HTTP PUT request to the specified URL.

Request Body

  • id (string) - The ID of the caller to be updated.

  • action (string) - The action to be performed on the caller ID. Enable 1, Disable 0

put/route-caller-ids

Request body

actionstring
idstring

Example request

{
  "action": "1",
  "id": "15"
}

Response

successful operation

Example response

{
  "callerIds": [
    {
      "caller_id_name": "caller1",
      "caller_id_number": "447700001234",
      "created_at": "2024-09-10 11:58:25",
      "id": "15",
      "is_active": "1"
    }
  ]
}