POST api/NGO/SendClothRequest

No documentation available.

Request Information

Parameters

NameDescriptionAdditional information
orderInfo
No documentation available.

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "user_id": "sample string 1",
  "member_id": "sample string 2",
  "member_name": "sample string 3",
  "gender": "sample string 4",
  "ClothDetails": [
    {
      "clothe_id": "sample string 1",
      "clothe_name": "sample string 2",
      "qty": 3
    },
    {
      "clothe_id": "sample string 1",
      "clothe_name": "sample string 2",
      "qty": 3
    }
  ]
}

application/xml, text/xml

Sample:
<RequestNewData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NGO.Models">
  <ClothDetails>
    <ClothDetails>
      <clothe_id>sample string 1</clothe_id>
      <clothe_name>sample string 2</clothe_name>
      <qty>3</qty>
    </ClothDetails>
    <ClothDetails>
      <clothe_id>sample string 1</clothe_id>
      <clothe_name>sample string 2</clothe_name>
      <qty>3</qty>
    </ClothDetails>
  </ClothDetails>
  <gender>sample string 4</gender>
  <member_id>sample string 2</member_id>
  <member_name>sample string 3</member_name>
  <user_id>sample string 1</user_id>
</RequestNewData>

application/x-www-form-urlencoded

Sample:

Sample not available.