GET v1/salesOrder/{salesOrderID}/images
Retrieve list of images associated with a Sales Order
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| salesOrderID | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of FileModel| Name | Description | Type | Additional information |
|---|---|---|---|
| FileURLID |
Unique identifier of image |
integer |
None. |
| FileURL |
URL of image |
string |
None. |
| FileByteArray |
Image byte array |
Collection of byte |
None. |
| FileExtension | string |
None. |
|
| FileName | string |
None. |
|
| CreationDate | date |
None. |
|
| CreatedBy | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"fileURLID": 1,
"fileURL": "sample string 2",
"fileByteArray": "QEA=",
"fileExtension": "sample string 3",
"fileName": "sample string 4",
"creationDate": "2025-11-08T08:25:11.3327491+00:00",
"createdBy": "sample string 5"
},
{
"fileURLID": 1,
"fileURL": "sample string 2",
"fileByteArray": "QEA=",
"fileExtension": "sample string 3",
"fileName": "sample string 4",
"creationDate": "2025-11-08T08:25:11.3327491+00:00",
"createdBy": "sample string 5"
}
]