GET api/appmessage/get/{Id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
AppMessageDisplay| Name | Description | Type | Additional information |
|---|---|---|---|
| LanguageIdDisplay | string |
None. |
|
| TypeDisplay | string |
None. |
|
| VisibilityDisplay | string |
None. |
|
| editDisableButton | boolean |
Required |
|
| Id | integer |
Required |
|
| RowGuid | globally unique identifier |
Required |
|
| MessageKey | string |
None. |
|
| Type | integer |
Required |
|
| Visibility | integer |
Required |
|
| Message | string |
None. |
|
| LanguageId | integer |
Required |
|
| Description | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"LanguageIdDisplay": "sample string 1",
"TypeDisplay": "sample string 2",
"VisibilityDisplay": "sample string 3",
"editDisableButton": true,
"Id": 5,
"RowGuid": "974d9369-7352-46af-b7b4-bb36a497c762",
"MessageKey": "sample string 7",
"Type": 8,
"Visibility": 9,
"Message": "sample string 10",
"LanguageId": 11,
"Description": "sample string 12"
}
application/xml, text/xml
Sample:
<AppMessageDisplay xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IWeb.App.Models"> <Description>sample string 12</Description> <Id>5</Id> <LanguageId>11</LanguageId> <Message>sample string 10</Message> <MessageKey>sample string 7</MessageKey> <RowGuid>974d9369-7352-46af-b7b4-bb36a497c762</RowGuid> <Type>8</Type> <Visibility>9</Visibility> <LanguageIdDisplay>sample string 1</LanguageIdDisplay> <TypeDisplay>sample string 2</TypeDisplay> <VisibilityDisplay>sample string 3</VisibilityDisplay> <editDisableButton>true</editDisableButton> </AppMessageDisplay>