v1
latestOpenAPI 3.0.32026-07-24156161.2 MBRoute Caller IDs (DID)
Create Route CallerID
Add Route Caller ID
This endpoint allows you to add a new caller ID for routing purposes.
Request Body
-
caller_id_name (string, optional): The name of the caller ID.
-
caller_id_number (string, optional): The number of the caller ID.
-
is_active (string, optional): Indicates if the caller ID is active.
Response
The response will contain the status of the request to add the caller ID.
post/route-caller-ids
Request body
Example request
{
"caller_id_name": "<string>",
"caller_id_number": "<string>",
"created_at": "<string>",
"id": "<integer>",
"is_active": "<string>"
}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"
}
]
}