cURL
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 }
Enable or disable multiple SIM cards in bulk through the Emnify API.
This endpoint processes multiple SIMs with rate limiting and batch processing to avoid API throttling.
Notes:
Bearer token authentication
List of phone numbers (MSISDN) to modify (max 100)
["423663922670587", "423663922670588"]
Action to perform on all SIMs
enable
disable
"enable"
Show child attributes