Rate table accounts payable lines contain criteria for applying a default markup % to matching employee expense transactions during invoicing.
Returns up to 100 object references from the collection with a key, ID, and link for each object. 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": "84",
- "id": "84",
- "href": "/objects/construction/rate-table-employee-expense-line/84"
}, - {
- "key": "85",
- "id": "85",
- "href": "/objects/construction/rate-table-employee-expense-line/85"
}, - {
- "key": "60",
- "id": "60",
- "href": "/objects/construction/rate-table-employee-expense-line/60"
}, - {
- "key": "78",
- "id": "78",
- "href": "/objects/construction/rate-table-employee-expense-line/78"
}, - {
- "key": "79",
- "id": "79",
- "href": "/objects/construction/rate-table-employee-expense-line/79"
}
], - "ia::meta": {
- "totalCount": 5,
- "start": 1,
- "pageSize": 100
}
}
Returns detailed information for a particular rate table employee expense line.
key required | string System-assigned key for the rate table employee expense line. |
OK
Bad Request
{- "ia::result": {
- "key": "30",
- "id": "30",
- "rateTable": {
- "key": "145",
- "id": "2021-LV2",
- "name": "2021 Level 2",
- "href": "/objects/construction/rate-table/145"
}, - "href": "/objects/construction/rate-table-employee-expense-line/30",
- "lineNumber": 1,
- "description": "Aug Manager",
- "startDate": "2021-08-02",
- "markupPercent": "14.800",
- "accumulationType": {
- "key": "2",
- "id": "ACCT-2",
- "href": "/objects/construction/accumulation-type/2"
}, - "standardCostType": {
- "key": "33",
- "id": "CT-RT-0010",
- "name": "CT-RT-0010 MATERIAL",
- "href": "/objects/construction/standard-cost-type/33"
}, - "standardTask": {
- "key": "3",
- "id": "TSK-RT-0011",
- "name": "TSK-RT-0011 Name",
- "href": "/objects/construction/standard-task/3"
}, - "dimensions": {
- "employee": {
- "key": "10",
- "id": "10",
- "name": "Thomas, Glenn",
- "href": "/objects/company-config/employee/10"
}, - "project": {
- "key": "2",
- "id": "NET-XML30-2",
- "name": "Talcomp training",
- "href": "/objects/projects/project/2"
}, - "customer": {
- "key": "13",
- "id": "113",
- "name": "Jack In the Box",
- "href": "/objects/accounts-receivable/customer/13"
}, - "vendor": {
- "key": "357",
- "id": "1605212096809",
- "name": "GenLab",
- "href": "/objects/accounts-payable/vendor/357"
}, - "item": {
- "key": "13",
- "id": "Case 13",
- "name": "Platform pack",
- "href": "/objects/inventory-control/item/13"
}, - "warehouse": {
- "key": "6",
- "id": "WH01",
- "name": "WH01",
- "href": "/objects/inventory-control/warehouse/6"
}, - "class": {
- "key": "731",
- "id": "REST_CLS_001",
- "name": "Enterprises",
- "href": "/objects/company-config/class/731"
}, - "task": {
- "key": "2",
- "id": "tet",
- "name": "Design",
- "href": "/objects/projects/task/2"
}
}, - "audit": {
- "createdDateTime": "2014-01-08T11:28:12Z",
- "modifiedDateTime": "2014-01-08T11:28:12Z",
- "createdBy": "1",
- "modifiedBy": "95"
}
}, - "ia::meta": {
- "totalCount": 1
}
}
Queries an object for filtered data.
object | string Object type to query, in the form Example: "construction/rate-table-employee-expense-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
}
}