POST api/subscriptions/mobile/{subscriptionId}/simreplace
Submits a SIM replacement order for the specified subscription of type Mobile.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
subscriptionId |
The ID of the subscription for which to order SIM replacement. |
integer |
Required |
Body Parameters
An object with details about the request. Note that the CreatedBy, IccId and ProductProvisioningCode properties can be omitted.
MobileSimIccOrderName | Description | Type | Additional information |
---|---|---|---|
CreatedBy | string |
None. |
|
Date | date |
None. |
|
IccId | string |
None. |
|
ProductProvisioningCode | integer |
None. |
|
SimTypeId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{ "CreatedBy": "sample string 1", "Date": "2025-04-28T01:09:51.51268+02:00", "IccId": "sample string 3", "ProductProvisioningCode": 4, "SimTypeId": 5 }
text/html
Sample:
{"CreatedBy":"sample string 1","Date":"2025-04-28T01:09:51.51268+02:00","IccId":"sample string 3","ProductProvisioningCode":4,"SimTypeId":5}
application/xml, text/xml
Sample:
<MobileSimIccOrder xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <CreatedBy>sample string 1</CreatedBy> <Date>2025-04-28T01:09:51.51268+02:00</Date> <IccId>sample string 3</IccId> <ProductProvisioningCode>4</ProductProvisioningCode> <SimTypeId>5</SimTypeId> </MobileSimIccOrder>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
The created order.
OrderName | Description | Type | Additional information |
---|---|---|---|
CategoryId | integer |
None. |
|
CreatedDate | date |
None. |
|
Date | date |
None. |
|
Id | integer |
None. |
|
OrderTypeId | integer |
None. |
|
PhoneNumber | string |
None. |
|
SalesCode | string |
None. |
|
StatusId | integer |
None. |
|
SubscriptionId | integer |
None. |
|
WholeSalesPartnerId | integer |
None. |
Response Formats
application/json, text/json
Sample:
{ "CategoryId": 1, "CreatedDate": "2025-04-28T01:09:51.51268+02:00", "Date": "2025-04-28T01:09:51.51268+02:00", "Id": 4, "OrderTypeId": 5, "PhoneNumber": "sample string 6", "SalesCode": "sample string 7", "StatusId": 8, "SubscriptionId": 1, "WholeSalesPartnerId": 9 }
text/html
Sample:
{"CategoryId":1,"CreatedDate":"2025-04-28T01:09:51.51268+02:00","Date":"2025-04-28T01:09:51.51268+02:00","Id":4,"OrderTypeId":5,"PhoneNumber":"sample string 6","SalesCode":"sample string 7","StatusId":8,"SubscriptionId":1,"WholeSalesPartnerId":9}
application/xml, text/xml
Sample:
<Order xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <CategoryId>1</CategoryId> <CreatedDate>2025-04-28T01:09:51.51268+02:00</CreatedDate> <Date>2025-04-28T01:09:51.51268+02:00</Date> <Id>4</Id> <OrderTypeId>5</OrderTypeId> <PhoneNumber>sample string 6</PhoneNumber> <SalesCode>sample string 7</SalesCode> <StatusId>8</StatusId> <SubscriptionId>1</SubscriptionId> <WholeSalesPartnerId>9</WholeSalesPartnerId> </Order>