API : Roaming Data Create
Introduction
This request will create a new roaming data price object.
Request
| URL | https://api.telecomx.dk/roaming/data |
| Method | POST |
| Access level | ADMIN |
| Body | stayingRegion | String | The region the mobile phone is staying in: NORDIC, EU, REST_OF_EUROPE, WORLD1, WORLD2, WORLD3. |
| cost | Number | Pr. mb data cost. |
| wholesale | Number | Pr. mb data reseller cost. |
| price | Number | Pr. mb data customer price. |
Request body example
{
stayingRegion: 'EU',
cost: 1.0,
wholesale: 1.5,
price: 1.75
}
Response
The response will be the newly created roaming voice, if no errors occurred.
| JSON object |
| _id | Id | Id |
| stayingRegion | String | The region the mobile phone is staying in: NORDIC, EU, REST_OF_EUROPE, WORLD1, WORLD2, WORLD3. |
| cost | Number | Pr. mb data cost. |
| wholesale | Number | Pr. mb data reseller cost. |
| price | Number | Pr. mb data customer price. |
Example
{
_id: '123457890ABCDEF1234578',
stayingRegion: 'EU',
cost: 1.0,
wholesale: 1.5,
price: 1.75
}
Errors
| Error code | Message | Description |
| 422 | stayingRegion | Staying region is not recognized |
| 422 | cost | Cost is invalid |
| 422 | wholesale | Wholesale is invalid |
| 422 | price | Price is invalid |
| 409 | stayingRegion | There already exists an entry for the selected staying region |
| 403 | access_denied | Insufficient access level |
| 500 | internal_error | <Unspecified> |