Skip to main content

Create SIM card group

POST 
/wireless/sim_card_groups

Creates a new SIM card group. The SIM card group name must be unique.

Request

Body

required

Create SIM card payload

    name string

    The name of the SIM card group.

    billing_plan_id uuid

    The UUID of the billing plan that should be associated with this SIM card group.

Responses

200: Successful response

401: Authentication error

403: Authorization error

Request samples


curl -L 'https://api.telnyx.com/wireless/sim_card_groups' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-d '{
"name": "string",
"billing_plan_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6"
}'

Response samples


{
"data": {
"id": "string",
"data_allocation": "string",
"ingress_site_id": "string",
"egress_site_id": "string",
"created_at": "string",
"updated_at": "string"
}
}