POST delivery/editstatus

Request Information

URI Parameters

None.

Body Parameters

DeliveryStatus
NameDescriptionTypeAdditional information
DeliveryId

integer

None.

Status

integer

None.

CourierId

integer

None.

Info

string

None.

SignatureImage

string

None.

Editor

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "deliveryId": 1,
  "status": 1,
  "courierId": 1,
  "info": "sample string 2",
  "signatureImage": "sample string 3",
  "editor": 1
}

application/xml, text/xml

Sample:
<DeliveryStatus xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Clickoapp2.Shared.ViewModels">
  <CourierId>1</CourierId>
  <DeliveryId>1</DeliveryId>
  <Editor>1</Editor>
  <Info>sample string 2</Info>
  <SignatureImage>sample string 3</SignatureImage>
  <Status>1</Status>
</DeliveryStatus>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

boolean

Response Formats

application/json, text/json

Sample:
true

application/xml, text/xml

Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>