api/v1/orders/fullbar

Method: POST https://simportal-api-staging.azurewebsites.net/api/v1/orders/fullbar?simId={simId}

Summary

Create a Full Bar order which temporarily suspends and stops GPRS traffic on the given SIM, calls and messaging. O2 and Vodafone SIMs only (not LP-WAN).

Request Information

URI Parameters

NameDescriptionTypeAdditional information
simId

The unique SIM id that's been requested to be suspended

globally unique identifier

Required

Body Parameters

This model contains all of the information required to create a Bar order

CreateOrderModel
NameDescriptionTypeAdditional information
Reason

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Reason": "sample string 1"
}

application/xml, text/xml

Sample:
<CreateOrderModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SimPortalApi.Models.Orders">
  <Reason>sample string 1</Reason>
</CreateOrderModel>

application/x-www-form-urlencoded

Sample:
Reason=samplestring

Response Information

Resource Description

OrderResponseModel
NameDescriptionTypeAdditional information
OrderId

globally unique identifier

None.

Created

date

None.

State

OrderState

None.

Response Formats

application/json, text/json

Sample:
{
  "OrderId": "e8e79795-9243-45e8-b9d7-450fac135b85",
  "Created": "2024-04-19T10:52:18.0683982+00:00",
  "State": 0
}

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" />