SIM Management
API Reference
Sim Swap

Sim Swap

Request

curl --location 'https://api.cellhire.com/api/simSubmission' \
--header 'Content-Type: application/json;charset=UTF-8' \
--header 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6IjRBMDlENTFBMDhEOEUxMTU0OTkyODFDN...' \
--data '{ 
   "type":"sim-swap",
   "commands":[ 
      { 
         "serialNumbers":[ 
            "1111111111111111111",
            "2222222222222222222",
            "3333333333333333333",
            "4444444444444444444",
            "5555555555555555555",
         ],
         "commandOptions":{ 
            "type":"sim-swap",
            "simSwaps":[ 
               "666666666666666", // will be swapped with "1111111111111111111"
               "777777777777777", // will be swapped with "2222222222222222222”
               "888888888888888", // etc…
               "999999999999999",
               "000000000000000"
            ]
         }
      }
   ]
}