---
updatedAt: 2026-05-14T17:08:40.000Z
---

Fetch the complete documentation index at: https://developers.pismo.io/pismo-docs/llms.txt. Use this file to discover all available pages before exploring further. Append .md to any documentation page URL to get its markdown version.

# Get phone


Get a phone number.

To get a list of phone IDs, call [List phones](ref:get-accounts-v1-accounts-accountid-phones).


# OpenAPI definition

```json
{
  "openapi": "3.1.0",
  "info": {
    "title": "Core platform - Accounts",
    "version": "1.0.0",
    "description": "API used to manage accounts domain",
    "contact": {
      "name": "API Support",
      "url": "https://developers.pismo.io/support/"
    },
    "license": {
      "name": "Copyright Pismo"
    }
  },
  "servers": [
    {
      "url": "https://sandbox.pismolabs.io",
      "description": "API server for testing."
    }
  ],
  "tags": [
    {
      "name": "Phones",
      "description": "Endpoints to manage phones"
    }
  ],
  "components": {
    "parameters": {
      "AccountIdPath": {
        "name": "accountId",
        "in": "path",
        "description": "Account ID",
        "required": true,
        "schema": {
          "type": "integer",
          "format": "int64",
          "minimum": 1,
          "example": 123
        }
      },
      "PhoneIdPath": {
        "name": "phoneId",
        "in": "path",
        "required": true,
        "description": "Phone ID",
        "schema": {
          "type": "integer",
          "format": "int64",
          "example": 456,
          "minimum": 1
        }
      }
    },
    "schemas": {
      "AccountID": {
        "type": "integer",
        "format": "int64",
        "description": "Account ID",
        "example": 1001
      },
      "AreaCode": {
        "type": "string",
        "description": "Phone number area code",
        "maxLength": 2,
        "example": "51"
      },
      "CustomerID": {
        "type": "integer",
        "format": "int64",
        "description": "Customer ID",
        "example": 100211299
      },
      "OrganizationID": {
        "type": "string",
        "description": "Organization ID",
        "example": "TN-34778262-f4f0-464d-b4c6-a14e2dc6f4be"
      },
      "PhoneActive": {
        "type": "boolean",
        "description": "Is phone active? Default is `true`.",
        "example": false
      },
      "PhoneCountryCode": {
        "description": "Phone number's country code",
        "type": "string",
        "maxLength": 5,
        "example": "555"
      },
      "PhoneDate": {
        "type": "string",
        "description": "Phone date creation. RFC 3339 format.",
        "format": "date-time",
        "example": "2021-10-21T00:00:00Z"
      },
      "PhoneExtension": {
        "type": "string",
        "description": "Optional phone number extension",
        "maxLength": 10,
        "example": "ext. 9"
      },
      "PhoneID": {
        "type": "integer",
        "format": "int64",
        "description": "Phone ID",
        "example": 8714
      },
      "PhoneItemResponse": {
        "type": "object",
        "properties": {
          "id": {
            "$ref": "#/components/schemas/PhoneID"
          },
          "account_id": {
            "$ref": "#/components/schemas/AccountID"
          },
          "area_code": {
            "$ref": "#/components/schemas/AreaCode"
          },
          "number": {
            "$ref": "#/components/schemas/PhoneNumber"
          },
          "type": {
            "$ref": "#/components/schemas/PhoneType"
          },
          "extension": {
            "$ref": "#/components/schemas/PhoneExtension"
          },
          "active": {
            "$ref": "#/components/schemas/PhoneActive"
          },
          "org_id": {
            "$ref": "#/components/schemas/OrganizationID"
          },
          "country_code": {
            "$ref": "#/components/schemas/PhoneCountryCode"
          },
          "creation_date": {
            "$ref": "#/components/schemas/PhoneDate"
          },
          "last_update": {
            "$ref": "#/components/schemas/PhoneLastUpdate"
          },
          "customer_id": {
            "$ref": "#/components/schemas/CustomerID"
          }
        }
      },
      "PhoneLastUpdate": {
        "type": "string",
        "format": "date-time",
        "example": "2021-10-21T00:00:00Z",
        "description": "Date of last phone update"
      },
      "PhoneNumber": {
        "type": "string",
        "description": "Phone number",
        "maxLength": 15,
        "example": "11912345678"
      },
      "PhoneType": {
        "type": "string",
        "description": "Phone number type",
        "enum": [
          "RESIDENTIAL",
          "COMMERCIAL",
          "MOBILE"
        ],
        "example": "MOBILE"
      },
      "SimpleError": {
        "title": "SimpleError",
        "type": "object",
        "required": [
          "message"
        ],
        "properties": {
          "message": {
            "type": "string",
            "description": "Error message"
          }
        }
      }
    },
    "securitySchemes": {
      "BearerAuth": {
        "type": "http",
        "scheme": "bearer",
        "bearerFormat": "JWT"
      }
    }
  },
  "security": [
    {
      "BearerAuth": []
    }
  ],
  "x-readme": {
    "explorer-enabled": true,
    "proxy-enabled": true,
    "samples-enabled": true
  },
  "paths": {
    "/accounts/v1/accounts/{accountId}/phones/{phoneId}": {
      "get": {
        "operationId": "get-accounts-v1-accounts-accountId-phones-phoneId",
        "summary": "Get phone",
        "description": "\nGet a phone number.\n\nTo get a list of phone IDs, call [List phones](https://developers.pismo.io/pismo-docs/reference/get-accounts-v1-accounts-accountid-phones).\n",
        "tags": [
          "Phones"
        ],
        "parameters": [
          {
            "$ref": "#/components/parameters/AccountIdPath"
          },
          {
            "$ref": "#/components/parameters/PhoneIdPath"
          }
        ],
        "responses": {
          "200": {
            "description": "Ok",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PhoneItemResponse"
                },
                "examples": {
                  "Phone number": {
                    "value": {
                      "area_code": "11",
                      "number": "91234-5678",
                      "type": "MOBILE",
                      "extension": "ext 123",
                      "active": true,
                      "country_code": "55",
                      "creation_date": "2022-01-01T01:01:01Z",
                      "last_update": "2022-02-02T02:02:02Z",
                      "customer_id": 1
                    }
                  }
                }
              }
            }
          },
          "500": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/SimpleError"
                },
                "examples": {
                  "Internal server error": {
                    "value": {
                      "message": "Error retrieving phone number"
                    }
                  }
                }
              }
            },
            "description": "Internal server error"
          }
        }
      }
    }
  }
}
```