POST
/
v1
/
numbers
Provision Number
curl --request POST \
  --url https://api.production.telgea.com/v1/numbers \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '{
  "employeeId": "<string>",
  "countryCode": "AC"
}'
{
  "id": "<string>",
  "phoneNumber": "<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.

Body

application/json

Response

200
application/json

Creates and provisions a phone number for the given employee in the specified country.

The response is of type object.