InternalOrderSearchRequest¶
Example Json Object
1{
2 "searchTerm": "string",
3 "createdAtGreaterThanOrEqual": "2019-08-24T14:15:22Z",
4 "createdAtLessThanOrEqual": "2019-08-24T14:15:22Z",
5 "modifiedAtGreaterThanOrEqual": "2019-08-24T14:15:22Z",
6 "modifiedAtLessThanOrEqual": "2019-08-24T14:15:22Z",
7 "createdByLike": "string",
8 "createdByEqual": "string",
9 "statusEqual": "CREATED",
10 "statusIn": [
11 "CREATED"
12 ],
13 "erpSystemIdIn": [
14 0
15 ],
16 "erpSystemIdEqual": 0,
17 "erpSystemDisplayIdIn": [
18 "string"
19 ],
20 "idIn": [
21 0
22 ],
23 "companyIdIn": [
24 0
25 ],
26 "companyIdEqual": 0,
27 "internalOrderTypeIdIn": [
28 0
29 ],
30 "internalOrderTypeIdEqual": 0
31}
📄 Description: Data transfer object representing a request to search for internal orders within the General Ledger, facilitating the retrieval of ledger entries, transactions, and associated financial records for effective account management.
Properties
Name |
Type |
Required |
Restrictions |
Description |
|---|---|---|---|---|
searchTerm |
string |
false |
none |
Text value for searchTerm in InternalOrderSearchRequest |
createdAtGreaterThanOrEqual |
string(date-time) |
false |
none |
Filter where created at is greater than or equal to specified value |
createdAtLessThanOrEqual |
string(date-time) |
false |
none |
Filter where created at is less than or equal to specified value |
modifiedAtGreaterThanOrEqual |
string(date-time) |
false |
none |
Filter where modified at is greater than or equal to specified value |
modifiedAtLessThanOrEqual |
string(date-time) |
false |
none |
Filter where modified at is less than or equal to specified value |
createdByLike |
string |
false |
none |
Filter by partial match of created by |
createdByEqual |
string |
false |
none |
Filter by exact match of created by |
statusEqual |
string |
false |
none |
Filter by exact match of status |
statusIn |
[string] |
false |
none |
Filter by multiple values of status |
erpSystemIdIn |
[integer] |
false |
none |
Filter by multiple values of erp system id |
erpSystemIdEqual |
integer(int64) |
false |
none |
Filter by exact match of erp system id |
erpSystemDisplayIdIn |
[string] |
false |
none |
Filter by multiple values of erp system display id |
idIn |
[integer] |
false |
none |
Filter by multiple values of id |
companyIdIn |
[integer] |
false |
none |
Filter by multiple values of company id |
companyIdEqual |
integer(int64) |
false |
none |
Filter by exact match of company id |
internalOrderTypeIdIn |
[integer] |
false |
none |
Filter by multiple values of internal order type id |
internalOrderTypeIdEqual |
integer(int64) |
false |
none |
Filter by exact match of internal order type id |
Enumerated Values
Attribute |
Value |
|---|---|
statusEqual |
ACTIVE, CREATED, DECOMMISSIONED, DISABLED |