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.

updatedOn

date

None.

Request Formats

application/json, text/json

Sample:
{
  "Offer": "sample string 1",
  "id": 2,
  "deleted": true,
  "status": true,
  "createdOn": "2024-12-23T05:19:30.7597594+05:30",
  "updatedOn": "2024-12-23T05:19:30.7597594+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-12-23T05:19:30.7597594+05:30</createdOn>
  <deleted>true</deleted>
  <id>2</id>
  <status>true</status>
  <updatedOn>2024-12-23T05:19:30.7597594+05:30</updatedOn>
  <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.