POST api/Photostat/CreatePhototStatorder

Request Information

URI Parameters

None.

Body Parameters

CreateorderPhotoDTO
NameDescriptionTypeAdditional information
UserID

globally unique identifier

None.

DelAddress

globally unique identifier

None.

DeliveryTypeMode

DeliveryMode

None.

Service

PhstPrtService

None.

Rate

decimal number

None.

Copies

integer

None.

DeliveryCharge

decimal number

None.

ServiceCharge

decimal number

None.

Discount

decimal number

None.

Request Formats

application/json, text/json

Sample:
{
  "UserID": "17298354-d37e-408c-a106-5bcf00b3d0f2",
  "DelAddress": "5c7049a4-ba24-44e4-ab3d-e77b2b136d6b",
  "DeliveryTypeMode": 0,
  "Service": 0,
  "Rate": 3.1,
  "Copies": 4,
  "DeliveryCharge": 5.1,
  "ServiceCharge": 6.1,
  "Discount": 7.1
}

application/xml, text/xml

Sample:
<CreateorderPhotoDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TheanAPI.DTO">
  <Copies>4</Copies>
  <DelAddress>5c7049a4-ba24-44e4-ab3d-e77b2b136d6b</DelAddress>
  <DeliveryCharge>5.1</DeliveryCharge>
  <DeliveryTypeMode>Normal</DeliveryTypeMode>
  <Discount>7.1</Discount>
  <Rate>3.1</Rate>
  <Service>BlackWhite</Service>
  <ServiceCharge>6.1</ServiceCharge>
  <UserID>17298354-d37e-408c-a106-5bcf00b3d0f2</UserID>
</CreateorderPhotoDTO>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ResponseDtoOfObject
NameDescriptionTypeAdditional information
Status_cd

boolean

None.

Data

Object

None.

status_Desc

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Status_cd": true,
  "Data": {},
  "status_Desc": "sample string 3"
}

application/xml, text/xml

Sample:
<ResponseDtoOfanyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TheanAPI.DTO">
  <Data />
  <Status_cd>true</Status_cd>
  <status_Desc>sample string 3</status_Desc>
</ResponseDtoOfanyType>