Release phone number

Operation:
releaseNumber

Release a phone number that you no longer need. Once a phone number is released you will no longer be charged for it.
Parameters:
Name Type Description
number string The phone number you want to release
api_key string Your api key
api_secret string Your api secret
Response:

A JSON object with success and message attributes.

Example call:
curl https://api.phaxio.com/v1/releaseNumber \
        -F 'number=8475551234' \
        -F 'api_key=API_KEY' \
        -F 'api_secret=API_SECRET'
                
Example Response:
{
    "success":true,
    "message":"Number released successfully!",
    "data":[

    ]
}