v1
latestOpenAPI 3.0.32026-07-24156161.2 MBDynamic Caller IDs (DID)
Update dynamic caller ids
The Update dynamic caller ids endpoint allows to update the status of specific caller IDs. The request should include a raw JSON body with the keys "is_active" and "ids". The "is_active" key should have a value of 0 to deactivate the IDs, and the "ids" key should be an array of the IDs to be updated.
Request Body
-
is_active (number): Indicates the status to be updated. Set to 0 to deactivate the IDs.
-
ids (array): An array of IDs to be updated.
post/did
Request body
Example request
{
"ids": [
15,
14
],
"is_active": 1
}Response
Successful operation
Example response
{
"updatedIds": [
11,
13
]
}