api/v1/orders/simswap
Method: POST https://simportal-api-staging.azurewebsites.net/api/v1/orders/simswap
Summary
Create a Sim Swap order
Request Information
URI Parameters
None.
Body Parameters
The SimSwapOrderModel contains the original SIM and the new SIM that will be swapped against
CreateSimSwapOrderModel| Name | Description | Type | Additional information |
|---|---|---|---|
| OriginalSimId | globally unique identifier |
None. |
|
| NewSimId | globally unique identifier |
None. |
|
| Reason | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"OriginalSimId": "ba58fab1-0d9a-44af-ad5e-f1c8462b4d03",
"NewSimId": "313fa131-2487-43ad-ac4b-6e138031c16c",
"Reason": "sample string 3"
}
application/xml, text/xml
Sample:
<CreateSimSwapOrderModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SimPortalApi.Models.Orders"> <Reason>sample string 3</Reason> <NewSimId>313fa131-2487-43ad-ac4b-6e138031c16c</NewSimId> <OriginalSimId>ba58fab1-0d9a-44af-ad5e-f1c8462b4d03</OriginalSimId> </CreateSimSwapOrderModel>
application/x-www-form-urlencoded
Sample:
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": "4fe22403-01d3-42ac-80ea-ac9a6dd6d476",
"Created": "2025-10-29T22:13:47.2160238+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>