Update SIM card group
PATCH/wireless/sim_card_groups/:id
Updates a specific SIM card.
Request
Path Parameters
id uuidrequired
The unique identifier of the SIM card group
- application/json
Body
required
Update SIM card payload.
name string
The name of the SIM card group.
network_id string
The ID of the network that the SIM card group should associate with.
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 -X PATCH 'https://api.telnyx.com/wireless/sim_card_groups/:id' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-d '{
"name": "string",
"network_id": "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"
}
]
}