POST api/order/{order}/extend?token={token}

No documentation available.

Request Information

Parameters

NameDescriptionAdditional information
order
No documentation available.

Define this parameter in the request URI.

token
No documentation available.

Define this parameter in the request URI.

extend
No documentation available.

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "timestamp": "sample string 1",
  "customerId": 2,
  "regNo": "sample string 3",
  "vatNo": "sample string 4",
  "validUntil": "sample string 5"
}

application/xml, text/xml

Sample:
<Order xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SapAlzaAPI.Models.ExtendOrder">
  <customerId>2</customerId>
  <regNo>sample string 3</regNo>
  <timestamp>sample string 1</timestamp>
  <validUntil>sample string 5</validUntil>
  <vatNo>sample string 4</vatNo>
</Order>

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 'Order'.

Response Information

No documentation available.

Response body formats

application/json, text/json

Sample:
{
  "errorCode": 1,
  "errorMessage": "sample string 2",
  "validUntil": "sample string 3"
}

application/xml, text/xml

Sample:
<Response xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SapAlzaAPI.Models.ExtendOrder">
  <errorCode>1</errorCode>
  <errorMessage>sample string 2</errorMessage>
  <validUntil>sample string 3</validUntil>
</Response>