GET api/Order/{orderNo}/Attachments
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| orderNo | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of OrderAttachment| Name | Description | Type | Additional information |
|---|---|---|---|
| orderNo | integer |
None. |
|
| attachmentNo | integer |
None. |
|
| orderAttachmentProcessing | integer |
None. |
|
| description | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"orderNo": 1,
"attachmentNo": 1,
"orderAttachmentProcessing": 1,
"description": "sample string 1"
},
{
"orderNo": 1,
"attachmentNo": 1,
"orderAttachmentProcessing": 1,
"description": "sample string 1"
}
]
application/xml, text/xml
Sample:
<ArrayOfOrderAttachment xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<OrderAttachment>
<orderNo>1</orderNo>
<attachmentNo>1</attachmentNo>
<orderAttachmentProcessing>1</orderAttachmentProcessing>
<description>sample string 1</description>
</OrderAttachment>
<OrderAttachment>
<orderNo>1</orderNo>
<attachmentNo>1</attachmentNo>
<orderAttachmentProcessing>1</orderAttachmentProcessing>
<description>sample string 1</description>
</OrderAttachment>
</ArrayOfOrderAttachment>