POST api/v1/drop_emi

Request Information

URI Parameters

None.

Body Parameters

Collection of product_emi_payment
NameDescriptionTypeAdditional information
user_id

integer

None.

order_id

integer

None.

emi_ref_id

integer

None.

remarks

string

None.

Request Formats

application/json, text/json

Sample:
[
  {
    "user_id": 1,
    "order_id": 2,
    "emi_ref_id": 3,
    "remarks": "sample string 4"
  },
  {
    "user_id": 1,
    "order_id": 2,
    "emi_ref_id": 3,
    "remarks": "sample string 4"
  }
]

application/xml, text/xml

Sample:
<ArrayOfproduct_emi_payment xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/">
  <product_emi_payment>
    <emi_ref_id>3</emi_ref_id>
    <order_id>2</order_id>
    <remarks>sample string 4</remarks>
    <user_id>1</user_id>
  </product_emi_payment>
  <product_emi_payment>
    <emi_ref_id>3</emi_ref_id>
    <order_id>2</order_id>
    <remarks>sample string 4</remarks>
    <user_id>1</user_id>
  </product_emi_payment>
</ArrayOfproduct_emi_payment>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Collection of Object

None.

Response Formats

application/json, text/json

Sample:

Sample not available.