Skip to main content
POST
/
api
/
v1
/
sim
/
status
/
bulk
Enable or disable multiple SIM cards
curl --request POST \
  --url https://api.raul.ugps.io/api/v1/sim/status/bulk \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "phone_numbers": [
    "423663922670587",
    "423663922670588"
  ],
  "action": "enable"
}
'
{
  "results": [
    {
      "success": true,
      "phone_number": "<string>",
      "message": "<string>",
      "endpoint_id": {},
      "sim_id": {},
      "new_status": {}
    }
  ],
  "total_count": 123,
  "successful_count": 123,
  "failed_count": 123
}

Authorizations

Authorization
string
header
required

Bearer token authentication

Body

application/json
phone_numbers
string[]
required

List of phone numbers (MSISDN) to modify (max 100)

Example:
["423663922670587", "423663922670588"]
action
enum<string>
required

Action to perform on all SIMs

Available options:
enable,
disable
Example:

"enable"

Response

results
object[]
required
total_count
number
required
successful_count
number
required
failed_count
number
required