Export Esim
This endpoint allows eSims URLs to be emailed to an external email address.
Network Support
| Network | NetworkId |
|---|---|
| eSIMsmart | 218 |
| eSIMsmart IOT | 225 |
| Orange (France) LMVNO | 234 |
| Vodafone AT (UK) | 200 |
- SIM status must be "on-hire"
- All SIMs must be:
- On the same network
- On the same account
Request
| Name | Type | Description | Restrictions |
|---|---|---|---|
serialNumbers | string array | An array of serial numbers corresponding to the SIMs you wish to update | At least one |
emailAddress | string | Email address that should receive the eSims |
Example ExportEsim
curl --location 'https://api.cellhire.com/api/simSubmission/ExportEsim' \
--header 'Content-Type: application/json;charset=UTF-8' \
--header 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6IjRBMDlENTFBMDhEOEUxMTU0OTkyODFDN...' \
--data '{
"serialNumbers": [
"987654321"
],
"emailAddress": "user@example.com"
}'Successful Response
| Name | Type | Description |
|---|---|---|
ticketNumber | guid | Submission Id that has been created |
{ "ticketNumber": "1beeb8dd-1825-4bcd-8a62-f941aacb8d15" }