GET api/Post/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Mobileapp_mst_Postdetails| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Details | string |
None. |
|
| Active | boolean |
None. |
|
| AddedBy | integer |
None. |
|
| AddedDateTime | date |
None. |
|
| UpdatedBy | integer |
None. |
|
| UpdatedDateTime | date |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": 1,
"Details": "sample string 2",
"Active": true,
"AddedBy": 1,
"AddedDateTime": "2026-01-16T14:26:43.5508468-08:00",
"UpdatedBy": 1,
"UpdatedDateTime": "2026-01-16T14:26:43.5508468-08:00"
}
application/xml, text/xml
Sample:
<Mobileapp_mst_Postdetails xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MobileAppApi.Models"> <Active>true</Active> <AddedBy>1</AddedBy> <AddedDateTime>2026-01-16T14:26:43.5508468-08:00</AddedDateTime> <Details>sample string 2</Details> <Id>1</Id> <UpdatedBy>1</UpdatedBy> <UpdatedDateTime>2026-01-16T14:26:43.5508468-08:00</UpdatedDateTime> </Mobileapp_mst_Postdetails>