POST api/cardService/v1/product/redundantposts

Request Information

URI Parameters

None.

Body Parameters

RedundantPostsRequestModel
NameDescriptionTypeAdditional information
DateTime

date

None.

Type

string

None.

Request Formats

application/json, text/json

Sample:
{
  "DateTime": "2025-10-26T10:49:11.9774242+00:00",
  "Type": "sample string 2"
}

application/xml, text/xml

Sample:
<RedundantPostsRequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Qcs.WebApi.WebApiModels.Product">
  <DateTime>2025-10-26T10:49:11.9774242+00:00</DateTime>
  <Type>sample string 2</Type>
</RedundantPostsRequestModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

RedundantPostsResponseModel
NameDescriptionTypeAdditional information
Payloads

Collection of RedundantPost

None.

IsSuccess

boolean

Required

ErrorCodes

Collection of string

Required

Message

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Payloads": [
    {
      "Type": "sample string 1",
      "Payload": "sample string 2"
    },
    {
      "Type": "sample string 1",
      "Payload": "sample string 2"
    }
  ],
  "IsSuccess": true,
  "ErrorCodes": [
    "sample string 1",
    "sample string 2"
  ],
  "Message": "sample string 2"
}

application/xml, text/xml

Sample:
<RedundantPostsResponseModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Qcs.WebApi.WebApiModels.Product">
  <ErrorCodes xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays" xmlns="http://schemas.datacontract.org/2004/07/Qcs.WebApi.WebApiModels">
    <d2p1:string>sample string 1</d2p1:string>
    <d2p1:string>sample string 2</d2p1:string>
  </ErrorCodes>
  <IsSuccess xmlns="http://schemas.datacontract.org/2004/07/Qcs.WebApi.WebApiModels">true</IsSuccess>
  <Message xmlns="http://schemas.datacontract.org/2004/07/Qcs.WebApi.WebApiModels">sample string 2</Message>
  <Payloads>
    <RedundantPost>
      <Payload>sample string 2</Payload>
      <Type>sample string 1</Type>
    </RedundantPost>
    <RedundantPost>
      <Payload>sample string 2</Payload>
      <Type>sample string 1</Type>
    </RedundantPost>
  </Payloads>
</RedundantPostsResponseModel>