Line items in a document that represent order entry transactions.
Returns a collection with a key, ID, and link for each order entry document line. This operation is mostly for use in testing; use query to find objects that meet certain criteria and to specify properties that are returned.
OK
Bad Request
{- "ia::result": [
- {
- "key": "19",
- "id": "19",
- "href": "/objects/order-entry/document-line::Sales%20Invoice/19"
}, - {
- "key": "24",
- "id": "24",
- "href": "/objects/order-entry/document-line::Sales%20Invoice/24"
}, - {
- "key": "25",
- "id": "25",
- "href": "/objects/order-entry/document-line::Sales%20Quote/25"
}
], - "ia::meta": {
- "totalCount": 3,
- "start": 1,
- "pageSize": 100
}
}
Returns detailed information for a specified order entry document line.
key required | string System-assigned key for the order entry document line. |
OK
Bad Request
{- "ia::result": {
- "id": "925",
- "key": "925",
- "documentHeader": {
- "key": "599",
- "id": "Sales Order-SO0066",
- "documentType": "Sales Order",
- "href": "/objects/order-entry-document::Sales%20Order/599"
}, - "documentType": "Sales Order",
- "lineNumber": 0,
- "dimensions": {
- "item": {
- "key": "1",
- "id": "1",
- "name": "PC Computer",
- "href": "/objects/inventory-control/item/1"
}, - "warehouse": {
- "id": "1",
- "key": "1",
- "href": "/objects/inventory-control/warehouse/1"
}, - "location": {
- "id": "1",
- "key": "1",
- "href": "/objects/company-config/location/1"
}, - "customer": {
- "key": "1",
- "id": "1",
- "name": "Power Aerospace Materials",
- "href": "/objects/accounts-receivable/customer/1"
}
}, - "item": {
- "key": "1",
- "id": "1",
- "href": "/objects/inventory-control/item/1"
}, - "unit": "Each",
- "quantity": "10",
- "quantityConverted": "1",
- "retailPrice": "222",
- "price": "333",
- "audit": {
- "createdDateTime": "2023-12-18T00:00:00Z",
- "modifiedDateTime": "2023-12-18T10:27:15Z",
- "createdBy": "1",
- "modifiedBy": "1"
}, - "status": "active",
- "unitQuantity": "1",
- "multiplier": 1,
- "unitPrice": "333",
- "txnCurrency": "USD",
- "baseCurrency": "USD",
- "priceInTxnCurrency": "333",
- "conversionType": "quantity",
- "allowDropship": false,
- "allowBuyToOrder": false,
- "quantityRemaining": "0",
- "trackingDetail": [ ],
- "href": "/objects/order-entry/document-line::Sales%20Order/925"
}, - "ia::meta": {
- "totalCount": 1,
- "totalSuccess": 1,
- "totalError": 0
}
}
Returns a collection with a key, ID, and link for each named order entry document line. This operation is mostly for use in testing; use query to find objects that meet certain criteria and to specify properties that are returned.
documentName required | string Document Name |
OK
Bad Request
{- "ia::result": [
- {
- "key": "19",
- "id": "19",
- "href": "/objects/order-entry/document-line::Sales%20Invoice/19"
}, - {
- "key": "24",
- "id": "24",
- "href": "/objects/order-entry/document-line::Sales%20Invoice/24"
}, - {
- "key": "25",
- "id": "25",
- "href": "/objects/order-entry/document-line::Sales%20Quote/25"
}
], - "ia::meta": {
- "totalCount": 3,
- "start": 1,
- "pageSize": 100
}
}
Creates a new order entry document line.
documentName required | string Document Name |
unit required | string Unit associated with this document line item. Example: "Each" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
unitQuantity required | string <decimal-precision-10> Unit quantity associated with this document line item. Example: "10.10" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
unitPrice required | string <decimal-precision-10> Unit price associated with this line item. Example: "10.50" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
object Item associated with the document line. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
object Alternative name for the Item for a specific customer. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
memo | string Memo about the document line item. Example: "Payment ACH" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
priceCalculationMemo | string Memo about price calculation used for the document line item. Example: "Fair value price list" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
status | string Default: "active" Object status. Active objects are fully functional. Inactive objects are essentially hidden and cannot be used or referenced. Example: "active" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
discountPercent | string <decimal-precision-2> Discount percentage for the document line item. Example: "10.50" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
multiplier | number Multiplier Example: 1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
object Parent/Source document | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
object Parent/Source document line that needs to be converted. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
isPriceProrated | boolean Default: true Indicates whether the price is prorated. Example: true | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
discountMemo | string Discount memo for any discounts taken. Example: "Festival discount" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
isBillable | boolean Default: true Indicates whether the line is billable. Example: true | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
taxRate | string <decimal-precision-2> Tax rate for the document line item. Example: "10.05" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
discountPercentage | string <decimal-precision-2> Discount applied to the line item. Example: "10.25" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
enableTax | boolean Default: false Indicates whether the line item is taxable. Example: false | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
conversionType | string Default: "quantity" Conversion type used for the transaction. Example: "quantity" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
object Example: "{ \"item\": { \"id\": \"1\" }, \"warehouse\": { \"id\": \"1\" }, \"location\": { \"id\": \"1\" }}" | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
object The template used for renewal schedules. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
revenueRecognitionStartDate | string <date> The date on which the either revenue recognition schedule and/or renewal schedule get started. Example: "2023-04-04" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
revenueRecognitionEndDate | string <date> The date on which the either revenue recognition schedule and/or renewal schedule ends. Example: "2023-04-04" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
requestedShippingDate | string <date> The date the customer requests the goods to arrive on their premises. The default is the due date. Example: "2023-04-04" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
shipByDate | string <date> The date the goods should be shipped so they arrive when the customer needs them. Example: "2023-04-04" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
pickTicketPrintedDate | string <date> The date on which the pick ticket is printed. Example: "2023-04-04" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
cancelAfterDate | string <date> Indicates the date after which the order can be canceled. Example: "2023-04-04" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
doNotShipBeforeDate | string <date> Do not ship before this date. Example: "2023-04-04" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
doNotShipAfterDate | string <date> Do not ship after this date. Example: "2023-04-04" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
shippedDate | string <date> The date that the order was shipped. Example: "2023-04-04" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
allowDropship | boolean Default: false Indicates whether dropship is allowed for the line. Example: true | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
allowBuyToOrder | boolean Default: false Indicates whether buy-to-order is allowed for the line. Example: true | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
object Contacts for delivering the buy-to-order. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Array of objects List of warehouse inventory details including serial number, aisle, bin, and row per item. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Array
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
object Header lever details for the document line items. Example: "22" | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Created
Bad Request
{- "documentHeader": {
- "key": "469"
}, - "dimensions": {
- "item": {
- "id": "1"
}, - "warehouse": {
- "id": "1"
}, - "location": {
- "id": "1"
}
}, - "unit": "Each",
- "unitQuantity": "1",
- "unitPrice": "650"
}
{- "ia::result": {
- "key": "807",
- "href": "/objects/order-entry/document-line::Sales%20Invoice/807"
}, - "ia::meta": {
- "totalCount": 1,
- "totalSuccess": 1,
- "totalError": 0
}
}
Returns detailed information for a specified order entry document line.
key required | string System-assigned key for the order entry document line. |
documentName required | string Document Name |
OK
Bad Request
{- "ia::result": {
- "id": "925",
- "key": "925",
- "documentHeader": {
- "key": "599",
- "id": "Sales Order-SO0066",
- "documentType": "Sales Order",
- "href": "/objects/order-entry-document::Sales%20Order/599"
}, - "documentType": "Sales Order",
- "lineNumber": 0,
- "dimensions": {
- "item": {
- "key": "1",
- "id": "1",
- "name": "PC Computer",
- "href": "/objects/inventory-control/item/1"
}, - "warehouse": {
- "id": "1",
- "key": "1",
- "href": "/objects/inventory-control/warehouse/1"
}, - "location": {
- "id": "1",
- "key": "1",
- "href": "/objects/company-config/location/1"
}, - "customer": {
- "key": "1",
- "id": "1",
- "name": "Power Aerospace Materials",
- "href": "/objects/accounts-receivable/customer/1"
}
}, - "item": {
- "key": "1",
- "id": "1",
- "href": "/objects/inventory-control/item/1"
}, - "unit": "Each",
- "quantity": "1",
- "quantityConverted": "1",
- "retailPrice": "222",
- "price": "333",
- "audit": {
- "createdDateTime": "2023-12-18T00:00:00Z",
- "modifiedDateTime": "2023-12-18T10:27:15Z",
- "createdBy": "1",
- "modifiedBy": "1"
}, - "status": "active",
- "unitQuantity": "1",
- "multiplier": 1,
- "unitPrice": "333",
- "txnCurrency": "USD",
- "baseCurrency": "USD",
- "priceInTxnCurrency": "333",
- "conversionType": "quantity",
- "allowDropship": false,
- "allowBuyToOrder": false,
- "quantityRemaining": "0",
- "trackingDetail": [ ],
- "href": "/objects/order-entry/document-line::Sales%20Order/925"
}, - "ia::meta": {
- "totalCount": 1,
- "totalSuccess": 1,
- "totalError": 0
}
}
Updates an existing order entry document line by setting field values. Any fields not provided remain unchanged.
key required | string System-assigned key for the order entry document line. |
documentName required | string Document Name |
object Item associated with the document line. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
object Alternative name for the Item for a specific customer. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
memo | string Memo about the document line item. Example: "Payment ACH" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
priceCalculationMemo | string Memo about price calculation used for the document line item. Example: "Fair value price list" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
unit | string Unit associated with this document line item. Example: "Each" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
unitQuantity | string <decimal-precision-10> Unit quantity associated with this document line item. Example: "10.10" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
unitPrice | string <decimal-precision-10> Unit price associated with this line item. Example: "10.50" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
status | string Default: "active" Object status. Active objects are fully functional. Inactive objects are essentially hidden and cannot be used or referenced. Example: "active" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
discountPercent | string <decimal-precision-2> Discount percentage for the document line item. Example: "10.50" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
multiplier | number Multiplier Example: 1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
object Parent/Source document | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
object Parent/Source document line that needs to be converted. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
isPriceProrated | boolean Default: true Indicates whether the price is prorated. Example: true | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
discountMemo | string Discount memo for any discounts taken. Example: "Festival discount" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
isBillable | boolean Default: true Indicates whether the line is billable. Example: true | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
taxRate | string <decimal-precision-2> Tax rate for the document line item. Example: "10.05" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
discountPercentage | string <decimal-precision-2> Discount applied to the line item. Example: "10.25" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
enableTax | boolean Default: false Indicates whether the line item is taxable. Example: false | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
conversionType | string Default: "quantity" Conversion type used for the transaction. Example: "quantity" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
object | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
object The template used for renewal schedules. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
revenueRecognitionStartDate | string <date> The date on which the either revenue recognition schedule and/or renewal schedule get started. Example: "2023-04-04" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
revenueRecognitionEndDate | string <date> The date on which the either revenue recognition schedule and/or renewal schedule ends. Example: "2023-04-04" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
requestedShippingDate | string <date> The date the customer requests the goods to arrive on their premises. The default is the due date. Example: "2023-04-04" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
shipByDate | string <date> The date the goods should be shipped so they arrive when the customer needs them. Example: "2023-04-04" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
pickTicketPrintedDate | string <date> The date on which the pick ticket is printed. Example: "2023-04-04" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
cancelAfterDate | string <date> Indicates the date after which the order can be canceled. Example: "2023-04-04" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
doNotShipBeforeDate | string <date> Do not ship before this date. Example: "2023-04-04" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
doNotShipAfterDate | string <date> Do not ship after this date. Example: "2023-04-04" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
shippedDate | string <date> The date that the order was shipped. Example: "2023-04-04" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
allowDropship | boolean Default: false Indicates whether dropship is allowed for the line. Example: true | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
allowBuyToOrder | boolean Default: false Indicates whether buy-to-order is allowed for the line. Example: true | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
object Contacts for delivering the buy-to-order. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Array of objects List of warehouse inventory details including serial number, aisle, bin, and row per item. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Array
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
object Header lever details for the document line items. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
OK
Bad Request
{- "unitQuantity": "10"
}
{- "ia::result": {
- "key": "52",
- "href": "/objects/order-entry/document-line::Sales%20Invoice/52"
}, - "ia::meta": {
- "totalCount": 1,
- "totalSuccess": 1,
- "totalError": 0
}
}
Deletes an order entry document line.
key required | string System-assigned key for the order entry document line. |
documentName required | string Document Name |
No Content
Bad Request
{- "ia::error": {
- "code": "invalidRequest",
- "message": "Malformed URL",
- "supportId": "sQrM9%7EYdh5oDEWVb80mrn9xuHjoAAAABBQ",
- "details": [
- {
- "code": "invalidRequest",
- "message": "The content type is not valid",
- "correction": "TODO"
}
]
}
}
Queries an object for filtered data.
object | string Object type to query, in the form Example: "order-entry/document-line" | ||||||||
fields | Array of strings List of fields to include in the response. Can be any combination of these:
Example: ["key","id","max:vendor.creditLimit"] | ||||||||
Array of equal (object) or not equal (object) or less than (object) or (less than or equal (object)) or greater than (object) or (greater than or equal (object)) or in (object) or not in (object) or between (object) or not between (object) or contains (object) or does not contain (object) or starts with (object) or does not start with (object) or ends with (object) or does not end with (object) Filter conditions to select the objects to return based on their field values. You use operators and conditions to build your filter, such as Example: [{"$eq":{"status":"active"}},{"$gt":{"totalDue":"1000"}},{"$contains":{"name":"Acme"}}] | |||||||||
Array Any of: Field value must be equal to this specified value. For date fields, you can use these macro values that are relative to the current date or the
These are most useful for queries that you want to save and use repeatedly, such as for views or reports. Just change the For example,
| |||||||||
filterExpression | string Default: "and" Logical operators to apply when there are multiple filter conditions. The conditions in the Shortcuts:
Example: "(1 and 2) or 3" | ||||||||
| |||||||||
Array of objects Set the order of the results by specifying field names to sort by and whether they should be in ascending or descending order. Example: [{"totalDue":"asc"},{"lastPaymentMadeDate":"desc"}] | |||||||||
Array
| |||||||||
start | integer First record of the result set to include in the response. Example: 1 | ||||||||
size | integer Number of records to include in the response. Example: 100 |
OK
Bad Request
{- "object": "accounts-payable/vendor",
- "fields": [
- "id",
- "name",
- "status",
- "href"
], - "filters": [
- {
- "$eq": {
- "status": "active"
}
}, - {
- "$eq": {
- "billingType": "openItem"
}
}
], - "filterExpression": "1 and 2",
- "orderBy": [
- {
- "id": "asc"
}
]
}
{- "ia::result": [
- {
- "id": "Vend-00002",
- "name": "Test vendor",
- "status": "active",
- "href": "/objects/accounts-payable/vendor/85"
}, - {
- "id": "VEND-00010",
- "name": "Design Works",
- "status": "active",
- "href": "/objects/accounts-payable/vendor/111"
}
], - "ia::meta": {
- "totalCount": 2,
- "start": 1,
- "pageSize": 100,
- "next": null,
- "previous": null
}
}