Get Port Number information

Method

GET

Path

port_numbers/ID

where ID is the ID of the port number

Request Parameters

None

Response

A JSON object with success, message, and data attributes. The data attribute holds a Port Number Object.

Sample Call

curl -g -u 'API_KEY:API_SECRET' https://api.phaxio.com/v2.1/port_numbers/1234

Sample Response

{
  "success": true,
  "message": "Retrieved port number",
  "data": {
    "id": 1234,
    "port_number": "+15551112222",
    "status": "open"
  }
}