POST api/OrderDocument/Find
Request Information
URI Parameters
None.
Body Parameters
OrderDocumentAPISearch| Name | Description | Type | Additional information |
|---|---|---|---|
| OrderId | integer |
None. |
|
| BuilderId | integer |
None. |
|
| CreatedDate | date |
None. |
|
| ModifiedDate | date |
None. |
|
| CreatedById | integer |
None. |
|
| ModifiedById | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"OrderId": 1,
"BuilderId": 1,
"CreatedDate": "2025-12-10T05:47:06.8693219+00:00",
"ModifiedDate": "2025-12-10T05:47:06.8693219+00:00",
"CreatedById": 3,
"ModifiedById": 4
}
application/xml, text/xml
Sample:
<OrderDocumentAPISearch xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Uchinet.General.API.Data"> <BuilderId>1</BuilderId> <CreatedById>3</CreatedById> <CreatedDate>2025-12-10T05:47:06.8693219+00:00</CreatedDate> <ModifiedById>4</ModifiedById> <ModifiedDate>2025-12-10T05:47:06.8693219+00:00</ModifiedDate> <OrderId>1</OrderId> </OrderDocumentAPISearch>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
OrderDocumentAPI| Name | Description | Type | Additional information |
|---|---|---|---|
| OrderDocumentId | integer |
None. |
|
| OrderId | integer |
None. |
|
| FileTypeId | integer |
None. |
|
| Name | string |
None. |
|
| FilePath | string |
None. |
|
| ThumbnailFilePath | string |
None. |
|
| BuilderId | integer |
None. |
|
| CreatedDate | date |
None. |
|
| ModifiedDate | date |
None. |
|
| CreatedById | integer |
None. |
|
| ModifiedById | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"OrderDocumentId": 1,
"OrderId": 1,
"FileTypeId": 1,
"Name": "sample string 1",
"FilePath": "sample string 2",
"ThumbnailFilePath": "sample string 3",
"BuilderId": 1,
"CreatedDate": "2025-12-10T05:47:06.8693219+00:00",
"ModifiedDate": "2025-12-10T05:47:06.8693219+00:00",
"CreatedById": 6,
"ModifiedById": 7
}
application/xml, text/xml
Sample:
<OrderDocumentAPI xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Uchinet.General.API.Data"> <BuilderId>1</BuilderId> <CreatedById>6</CreatedById> <CreatedDate>2025-12-10T05:47:06.8693219+00:00</CreatedDate> <ModifiedById>7</ModifiedById> <ModifiedDate>2025-12-10T05:47:06.8693219+00:00</ModifiedDate> <FilePath>sample string 2</FilePath> <FileTypeId>1</FileTypeId> <Name>sample string 1</Name> <OrderDocumentId>1</OrderDocumentId> <OrderId>1</OrderId> <ThumbnailFilePath>sample string 3</ThumbnailFilePath> </OrderDocumentAPI>