POST api/v1/cartupdater

No documentation available.

Request Information

Parameters

NameDescriptionAdditional information
data
No documentation available.

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "lang_id": 1,
  "c": 2,
  "page_number": 3,
  "page_count_row": 4,
  "details": [
    {
      "proudect_id": 1
    },
    {
      "proudect_id": 1
    }
  ]
}

text/xml

Sample:
<cartup_data xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/creative_api">
  <c>2</c>
  <details>
    <cartup_details>
      <proudect_id>1</proudect_id>
    </cartup_details>
    <cartup_details>
      <proudect_id>1</proudect_id>
    </cartup_details>
  </details>
  <lang_id>1</lang_id>
  <page_count_row>4</page_count_row>
  <page_number>3</page_number>
</cartup_data>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "data": null,
  "rowcount": 1,
  "status": true,
  "msg_error": "sample string 3"
}

text/xml

Sample:
<outdata xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/creative_api">
  <data i:nil="true" />
  <msg_error>sample string 3</msg_error>
  <rowcount>1</rowcount>
  <status>true</status>
</outdata>