POST api/OfferCategory/InsertOfferCategoryDetail
Request Information
URI Parameters
None.
Body Parameters
OfferCategoryEntity| Name | Description | Type | Additional information |
|---|---|---|---|
| PK_Offer_Cat_Id | integer |
None. |
|
| FK_Org_Id | integer |
None. |
|
| Name | string |
Required |
|
| Status | integer |
None. |
|
| Created_By | string |
None. |
|
| Created_Date | date |
None. |
|
| Modified_By | string |
None. |
|
| Modified_Date | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"pK_Offer_Cat_Id": 1,
"fK_Org_Id": 2,
"name": "sample string 3",
"status": 4,
"created_By": "sample string 5",
"created_Date": "2025-12-24T09:55:47.4211662+05:30",
"modified_By": "sample string 6",
"modified_Date": "2025-12-24T09:55:47.4211662+05:30"
}
text/xml
Sample:
<OfferCategoryEntity xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessEntities"> <Created_By>sample string 5</Created_By> <Created_Date>2025-12-24T09:55:47.4211662+05:30</Created_Date> <FK_Org_Id>2</FK_Org_Id> <Modified_By>sample string 6</Modified_By> <Modified_Date>2025-12-24T09:55:47.4211662+05:30</Modified_Date> <Name>sample string 3</Name> <PK_Offer_Cat_Id>1</PK_Offer_Cat_Id> <Status>4</Status> </OfferCategoryEntity>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |