api/v1/alerts/{id}/addsims
Method: POST https://simportal-api-staging.azurewebsites.net/api/v1/alerts/{id}/addsims
Summary
Associate SIMs with an alert.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The UUID / Guid of the alert |
globally unique identifier |
Required |
Body Parameters
The UUID/ Guid ID of the SIMs to associate with the alert. Max length: 100
Collection of globally unique identifierRequest Formats
application/json, text/json
Sample:
[ "eda9b0ea-0a55-40be-ba32-71fa6bdfbb5e", "008a7a81-62cf-41be-86c6-c91ce4f943a9" ]
application/xml, text/xml
Sample:
<ArrayOfguid xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <guid>eda9b0ea-0a55-40be-ba32-71fa6bdfbb5e</guid> <guid>008a7a81-62cf-41be-86c6-c91ce4f943a9</guid> </ArrayOfguid>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
HttpStatusCode only
ApnConfigModel| Name | Description | Type | Additional information |
|---|---|---|---|
| SimId | globally unique identifier |
None. |
|
| MobileNumber | string |
None. |
|
| ICCID | string |
None. |
|
| ResellerId | globally unique identifier |
None. |
|
| TariffId | globally unique identifier |
None. |
|
| APNName | string |
None. |
|
| APNUsername | string |
None. |
|
| APNPassword | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"SimId": "a2af7142-4233-4b2a-a647-ac95a2dbbdcd",
"MobileNumber": "sample string 2",
"ICCID": "sample string 3",
"ResellerId": "a6196d02-1300-4dc8-a86e-b6c0ed728be5",
"TariffId": "7bb091c2-0f1f-4705-adfe-4556f0020b2e",
"APNName": "sample string 6",
"APNUsername": "sample string 7",
"APNPassword": "sample string 8"
}
application/xml, text/xml
Sample:
<ApnConfigModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SimPortalApi.Models.SIMs"> <APNName>sample string 6</APNName> <APNPassword>sample string 8</APNPassword> <APNUsername>sample string 7</APNUsername> <ICCID>sample string 3</ICCID> <MobileNumber>sample string 2</MobileNumber> <ResellerId>a6196d02-1300-4dc8-a86e-b6c0ed728be5</ResellerId> <SimId>a2af7142-4233-4b2a-a647-ac95a2dbbdcd</SimId> <TariffId>7bb091c2-0f1f-4705-adfe-4556f0020b2e</TariffId> </ApnConfigModel>