api/v1/orders/bolton

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

Summary

Create a Bolt-On order for the given SIM

Request Information

URI Parameters

NameDescriptionTypeAdditional information
simId

The unique SIM id that's been requested for a Bolt-On

globally unique identifier

Required

Body Parameters

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

CreateBoltonOrderModel
NameDescriptionTypeAdditional information
BoltonId

globally unique identifier

None.

EndDate

date

None.

Reason

string

None.

Request Formats

application/json, text/json

Sample:
{
  "BoltonId": "d32c7317-5a45-48b1-8c02-a5ac469b3389",
  "EndDate": "2025-07-01T13:40:35.8045524+00:00",
  "Reason": "sample string 2"
}

application/xml, text/xml

Sample:
<CreateBoltonOrderModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SimPortalApi.Models.Orders">
  <Reason>sample string 2</Reason>
  <BoltonId>d32c7317-5a45-48b1-8c02-a5ac469b3389</BoltonId>
  <EndDate>2025-07-01T13:40:35.8045524+00:00</EndDate>
</CreateBoltonOrderModel>

application/x-www-form-urlencoded

Sample:
BoltonId=a1234567-gu1d-3x4m-pl31-e1f2g12345678&EndDate=value&Reason=samplestring

Response Information

Resource Description

OrderResponseModel
NameDescriptionTypeAdditional information
OrderId

globally unique identifier

None.

Created

date

None.

State

OrderState

None.

OrderTimescale

string

None.

Response Formats

application/json, text/json

Sample:
{
  "OrderId": "26e4a8c8-0c2e-4401-8e2f-0d3740054fb5",
  "Created": "2025-07-01T13:40:35.8045524+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>