POST
/
api
/
v1
/
phone-numbers
/
{phoneNumber}
/
release
curl --request POST \
  --url https://cx-staging-three.fly.dev/api/v1/phone-numbers/{phoneNumber}/release \
  --header 'Authorization: Basic <encoded-value>'
{
  "message": "process completed successfully",
  "status": "success"
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Path Parameters

phoneNumber
string
required

The phone number to be released

Response

200
application/json
Phone number released successfully
message
string
required

The response message

Example:

"process completed successfully"

status
string
required

The response status

Example:

"success"