Skip to main content
POST
/
sip
/
detach
Detach SIP Configuration from a Number
curl --request POST \
  --url https://api.cleartalk.ai/sip/detach \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "phone_number": "+14444444477",
  "direction": "both"
}
'

Authorizations

x-api-key
string
header
required

API Key for authentication

Body

application/json
phone_number
string
required

Phone number in E.164 format (must include country code)

Example:

"+14444444477"

direction
enum<string>
required

SIP direction to attach

Available options:
inbound,
outbound,
both
Example:

"both"

Response

SIP configuration detached successfully.