GET api/MsgAttachment
Request Information
URI Parameters
None.
Body Parameters
MsgAttachment| Name | Description | Type | Additional information |
|---|---|---|---|
| msgcode | integer |
None. |
|
| RecNo | integer |
None. |
|
| FiLEName | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"msgcode": 1,
"RecNo": 2,
"FiLEName": "sample string 3"
}
application/xml, text/xml
Sample:
<MsgAttachment xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ApiForAndroid.Models"> <FiLEName>sample string 3</FiLEName> <RecNo>2</RecNo> <msgcode>1</msgcode> </MsgAttachment>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Collection of MsgAttachment| Name | Description | Type | Additional information |
|---|---|---|---|
| msgcode | integer |
None. |
|
| RecNo | integer |
None. |
|
| FiLEName | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"msgcode": 1,
"RecNo": 2,
"FiLEName": "sample string 3"
},
{
"msgcode": 1,
"RecNo": 2,
"FiLEName": "sample string 3"
}
]
application/xml, text/xml
Sample:
<ArrayOfMsgAttachment xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ApiForAndroid.Models">
<MsgAttachment>
<FiLEName>sample string 3</FiLEName>
<RecNo>2</RecNo>
<msgcode>1</msgcode>
</MsgAttachment>
<MsgAttachment>
<FiLEName>sample string 3</FiLEName>
<RecNo>2</RecNo>
<msgcode>1</msgcode>
</MsgAttachment>
</ArrayOfMsgAttachment>