POST api/V3/Product/UpdateProductStage

Update the Product Attributes based on Its Stage

Request Information

URI Parameters

None.

Body Parameters

Product Data in Proper Format.

Collection of V3.ProductStageObject
NameDescriptionTypeAdditional information
ProductERPId

SAP or ERP code of the product

string

Required

String length: inclusive between 1 and 50

IsActive

Is Product Active or Not

boolean

None.

ProductStage

Product Stage

ProductStage

None.

Request Formats

application/json, text/json

Sample:
[
  {
    "ProductERPId": "sample string 1",
    "IsActive": true,
    "ProductStage": "Available"
  },
  {
    "ProductERPId": "sample string 1",
    "IsActive": true,
    "ProductStage": "Available"
  }
]

application/xml, text/xml

Sample:
<ArrayOfProductStageObject xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ExternalApis.V3.Models">
  <ProductStageObject>
    <IsActive>true</IsActive>
    <ProductERPId>sample string 1</ProductERPId>
    <ProductStage>Available</ProductStage>
  </ProductStageObject>
  <ProductStageObject>
    <IsActive>true</IsActive>
    <ProductERPId>sample string 1</ProductERPId>
    <ProductStage>Available</ProductStage>
  </ProductStageObject>
</ArrayOfProductStageObject>

Response Information

Resource Description

Response of the Task

ApiResponse
NameDescriptionTypeAdditional information
Message

Message Indicating the Overall Response Summary of the Requested API

string

None.

ResponseList

List of Errors

Collection of ApiResponseMessage

None.

Response

Enum Indicating the Response status

ResponseStatus

None.

ResponseStatusCount

Summary containing Number of SuccessFull And Failed Tasks

ResponseStatusCount

None.

Response Formats

application/json, text/json

Sample:
{
  "Message": "sample string 1",
  "ResponseList": [
    {
      "ERPId": "sample string 1",
      "Message": "sample string 2",
      "ResponseStatus": "Failure",
      "GUID": "sample string 3"
    },
    {
      "ERPId": "sample string 1",
      "Message": "sample string 2",
      "ResponseStatus": "Failure",
      "GUID": "sample string 3"
    }
  ],
  "Response": "Failure",
  "ResponseStatusCount": {
    "Updated": 1,
    "Failed": 2,
    "Ignored": 3,
    "Name": "sample string 1",
    "Total": 6,
    "StatusMessage": "sample string 1: Total-6, Updated-1, Failed-2, Ignored-3",
    "ResponseStatus": "PartialSuccess"
  }
}

application/xml, text/xml

Sample:
<ApiResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ExternalApis.Models.Common">
  <Message>sample string 1</Message>
  <Response>Failure</Response>
  <ResponseList>
    <ApiResponseMessage>
      <ERPId>sample string 1</ERPId>
      <GUID>sample string 3</GUID>
      <Message>sample string 2</Message>
      <ResponseStatus>Failure</ResponseStatus>
    </ApiResponseMessage>
    <ApiResponseMessage>
      <ERPId>sample string 1</ERPId>
      <GUID>sample string 3</GUID>
      <Message>sample string 2</Message>
      <ResponseStatus>Failure</ResponseStatus>
    </ApiResponseMessage>
  </ResponseList>
  <ResponseStatusCount>
    <Failed>2</Failed>
    <Ignored>3</Ignored>
    <Name>sample string 1</Name>
    <Updated>1</Updated>
  </ResponseStatusCount>
</ApiResponse>