curl --request DELETE \
--url https://api.bland.ai/v1/sip/port/{id} \
--header 'authorization: <authorization>'{
"data": {
"canceled": true
},
"errors": null
}
Cancel an in-progress number porting request.
curl --request DELETE \
--url https://api.bland.ai/v1/sip/port/{id} \
--header 'authorization: <authorization>'{
"data": {
"canceled": true
},
"errors": null
}
true if the port request was successfully canceled.completed status. Once a port is completed, the numbers have already been transferred.
curl -X DELETE https://api.bland.ai/v1/sip/port/port_xyz789 \
-H "Authorization: Bearer <token>"
{
"data": {
"canceled": true
},
"errors": null
}
Was this page helpful?