POST api/FAQ/Update
Request Information
URI Parameters
None.
Body Parameters
FAQ| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| FAQCategoriesId | integer |
None. |
|
| EnglishTitle | string |
None. |
|
| MyanmarTitle | string |
None. |
|
| EnglishDescription | string |
None. |
|
| MyanmarDescription | string |
None. |
|
| SortOrder | integer |
None. |
|
| IsDeleted | boolean |
None. |
|
| CreatedDate | date |
None. |
|
| CreatedUserId | integer |
None. |
|
| UpdatedDate | date |
None. |
|
| UpdatedUserId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"FAQCategoriesId": 2,
"EnglishTitle": "sample string 3",
"MyanmarTitle": "sample string 4",
"EnglishDescription": "sample string 5",
"MyanmarDescription": "sample string 6",
"SortOrder": 7,
"IsDeleted": true,
"CreatedDate": "2026-06-13T06:27:19.5332417+06:30",
"CreatedUserId": 10,
"UpdatedDate": "2026-06-13T06:27:19.5332417+06:30",
"UpdatedUserId": 1
}
application/xml, text/xml
Sample:
<FAQ xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Entity"> <CreatedDate>2026-06-13T06:27:19.5332417+06:30</CreatedDate> <CreatedUserId>10</CreatedUserId> <EnglishDescription>sample string 5</EnglishDescription> <EnglishTitle>sample string 3</EnglishTitle> <FAQCategoriesId>2</FAQCategoriesId> <Id>1</Id> <IsDeleted>true</IsDeleted> <MyanmarDescription>sample string 6</MyanmarDescription> <MyanmarTitle>sample string 4</MyanmarTitle> <SortOrder>7</SortOrder> <UpdatedDate>2026-06-13T06:27:19.5332417+06:30</UpdatedDate> <UpdatedUserId>1</UpdatedUserId> </FAQ>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
Collection of ResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | string |
None. |
|
| ReferenceNo | string |
None. |
|
| WholeSaleRegistrationId | string |
None. |
|
| MessageType | integer |
None. |
|
| Message | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": "sample string 1",
"ReferenceNo": "sample string 2",
"WholeSaleRegistrationId": "sample string 3",
"MessageType": 4,
"Message": "sample string 5"
},
{
"Id": "sample string 1",
"ReferenceNo": "sample string 2",
"WholeSaleRegistrationId": "sample string 3",
"MessageType": 4,
"Message": "sample string 5"
}
]
application/xml, text/xml
Sample:
<ArrayOfResponseMessage xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Models">
<ResponseMessage>
<Id>sample string 1</Id>
<Message>sample string 5</Message>
<MessageType>4</MessageType>
<ReferenceNo>sample string 2</ReferenceNo>
<WholeSaleRegistrationId>sample string 3</WholeSaleRegistrationId>
</ResponseMessage>
<ResponseMessage>
<Id>sample string 1</Id>
<Message>sample string 5</Message>
<MessageType>4</MessageType>
<ReferenceNo>sample string 2</ReferenceNo>
<WholeSaleRegistrationId>sample string 3</WholeSaleRegistrationId>
</ResponseMessage>
</ArrayOfResponseMessage>