POST Chip/AddOffer

Request Information

URI Parameters

None.

Body Parameters

OfferModel
NameDescriptionTypeAdditional information
Offer

string

None.

id

integer

None.

deleted

boolean

None.

status

boolean

None.

createdOn

date

None.

Request Formats

application/json, text/json

Sample:
{
  "Offer": "sample string 1",
  "id": 2,
  "deleted": true,
  "status": true,
  "createdOn": "2024-10-22T18:08:51.1587656+05:30"
}

application/xml, text/xml

Sample:
<OfferModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FixWebApi.Models">
  <createdOn>2024-10-22T18:08:51.1587656+05:30</createdOn>
  <deleted>true</deleted>
  <id>2</id>
  <status>true</status>
  <Offer>sample string 1</Offer>
</OfferModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.