GET
/
v1
/
numbers
/
{id}
Get Number
curl --request GET \
  --url https://api.production.telgea.com/v1/numbers/{id} \
  --header 'X-API-Key: <api-key>'
{
  "id": "<string>",
  "phoneNumber": "<string>",
  "owner": {
    "id": "<string>"
  },
  "simDetails": {
    "iccid": "<string>",
    "imsi": "<string>",
    "pin1": "<string>",
    "pin2": "<string>",
    "puk1": "<string>",
    "puk2": "<string>",
    "activationCode": "<string>"
  },
  "createdAt": "<string>"
}

Authorizations

X-API-Key
string
header
required

API key authentication requiring a valid API key to be included in the X-API-Key header.

Path Parameters

id
string
required

Response

200
application/json

Retrieves detailed information about a specific account number, including SIM and owner details.

The response is of type object.