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

NameDescriptionTypeAdditional 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 identifier

Request Formats

application/json, text/json

Sample:
[
  "ac287d5d-b989-40e7-a19a-01b4aaae654d",
  "a20e4ff7-fa54-4398-875a-3d9e3695d8e9"
]

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>ac287d5d-b989-40e7-a19a-01b4aaae654d</guid>
  <guid>a20e4ff7-fa54-4398-875a-3d9e3695d8e9</guid>
</ArrayOfguid>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'Guid[]'.

Response Information

Resource Description

HttpStatusCode only

ApnConfigModel
NameDescriptionTypeAdditional 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": "159a5faf-b4ff-44e3-8293-e24434107b65",
  "MobileNumber": "sample string 2",
  "ICCID": "sample string 3",
  "ResellerId": "8a77c82d-139c-4fe6-8b36-4538ed9b2b89",
  "TariffId": "d0915db1-afb5-4d84-aa77-f3bbedb87c53",
  "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>8a77c82d-139c-4fe6-8b36-4538ed9b2b89</ResellerId>
  <SimId>159a5faf-b4ff-44e3-8293-e24434107b65</SimId>
  <TariffId>d0915db1-afb5-4d84-aa77-f3bbedb87c53</TariffId>
</ApnConfigModel>