Create SIM card group
POST/wireless/sim_card_groups
Creates a new SIM card group. The SIM card group name must be unique.
Request
- application/json
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
- application/json
401: Authentication error
- application/json
403: Authorization error
- application/json
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"
}
}
{
"errors": [
{
"code": "10001",
"title": "error title",
"detail": "additional detail about the error",
"pointer": "/pointer/to/field"
}
]
}
{
"errors": [
{
"code": "10001",
"title": "error title",
"detail": "additional detail about the error",
"pointer": "/pointer/to/field"
}
]
}