api/v1/orders/tarrifchange
Method: POST https://developers.mobilemanager.co.uk/api/v1/orders/tarrifchange?simId={simId}
Summary
Create a Tariff Change order which moves the tariff for a given SIM to a new tariff
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| simId |
The unique SIM id that's been requested to apply to have its Tariff changed |
globally unique identifier |
Required |
Body Parameters
This model contains all of the information required to create a Tariff Change order
CreateTariffChangeOrderModel| Name | Description | Type | Additional information |
|---|---|---|---|
| TariffId | globally unique identifier |
None. |
|
| Reason | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"TariffId": "edbc3157-9187-4d4e-a726-05b12be622a6",
"Reason": "sample string 2"
}
application/xml, text/xml
Sample:
<CreateTariffChangeOrderModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SimPortalApi.Models.Orders"> <Reason>sample string 2</Reason> <TariffId>edbc3157-9187-4d4e-a726-05b12be622a6</TariffId> </CreateTariffChangeOrderModel>
application/x-www-form-urlencoded
Sample:
TariffId=a1234567-gu1d-3x4m-pl31-e1f2g12345678&Reason=samplestring
Response Information
Resource Description
OrderResponseModel| Name | Description | Type | Additional information |
|---|---|---|---|
| OrderId | globally unique identifier |
None. |
|
| Created | date |
None. |
|
| State | OrderState |
None. |
|
| OrderTimescale | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"OrderId": "c38be3aa-79b6-478c-8de6-6bdb47e8a184",
"Created": "2025-10-21T00:55:43.3066334+00:00",
"State": 0,
"OrderTimescale": "sample string 3"
}
application/xml, text/xml
Sample:
<OrderResponseModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SimPortalApi.Models.Orders"> <OrderTimescale>sample string 3</OrderTimescale> </OrderResponseModel>