An AP payment detail object provides details about a payment, including information about the bill, adjustment, or advance that was paid and line-item information for the bill, adjustment, or advance. AP payment detail is an owned object of AP payment.
Returns a collection with a key, ID, and link for each payment detail. This operation is mostly for use in testing; use query to find objects that meet certain criteria and to specify properties that are returned.
Subscription | Accounts Payable |
---|---|
User type | Business |
Permissions | List, View Payments |
OK
Created
Bad Request
Unauthorized
{- "ia::result": [
- {
- "key": "367",
- "id": "367",
- "href": "/objects/accounts-payable/payment-detail/367"
}, - {
- "key": "1043",
- "id": "1043",
- "href": "/objects/accounts-payable/payment-detail/1043"
}, - {
- "key": "1203",
- "id": "1203",
- "href": "/objects/accounts-payable/payment-detail/1203"
}
], - "ia::meta": {
- "totalCount": 509,
- "start": 1,
- "pageSize": 100,
- "next": 101,
- "previous": null
}
}
Returns detailed information for a specified payment detail object.
Subscription | Accounts Payable |
---|---|
User type | Business |
Permissions | List, View Payments |
key required | string System-assigned unique key for the payment detail. Example: 99 |
OK
Bad Request
{- "ia::result": {
- "id": "1133",
- "key": "1133",
- "bill": {
- "id": "2570",
- "key": "2570",
- "href": "/objects/accounts-payable/bill/2570"
}, - "billLine": {
- "id": "25392",
- "key": "25392",
- "href": "/objects/accounts-payable/bill-line/25392"
}, - "apCreditAdjustment": {
- "id": null,
- "key": null
}, - "apCreditAdjustmentLine": {
- "id": null,
- "key": null
}, - "apPayment": {
- "id": "3346",
- "key": "3346",
- "href": "/objects/accounts-payable/payment/3346"
}, - "apPaymentLine": {
- "id": "31060",
- "key": "31060",
- "href": "/objects/accounts-payable/payment-line/31060"
}, - "paymentDate": "2024-04-12",
- "baseCurrency": {
- "paymentAmount": "100.00",
- "inlineAmount": null,
- "discountAmount": null,
- "adjustmentAmount": null,
- "postedAdvanceAmount": null
}, - "txnCurrency": {
- "paymentAmount": "100.00",
- "inlineAmount": null,
- "discountAmount": null,
- "adjustmentAmount": null,
- "postedAdvanceAmount": null,
- "currency": "USD"
}, - "inlineBill": {
- "id": null,
- "key": null
}, - "inlineBillLine": {
- "id": null,
- "key": null
}, - "discountDate": null,
- "apDebitAdjustment": {
- "id": null,
- "key": null
}, - "apDebitAdjustmentLine": {
- "id": null,
- "key": null
}, - "apAdvance": {
- "id": null,
- "key": null
}, - "apAdvanceLine": {
- "id": null,
- "key": null
}, - "apPostedAdvance": {
- "id": null,
- "key": null
}, - "apPostedAdvanceLine": {
- "id": null,
- "key": null
}, - "state": "confirmed",
- "moduleKey": "3.AP",
- "audit": {
- "createdDateTime": "2024-04-12T07:05:13Z",
- "modifiedDateTime": "2024-04-12T07:05:13Z",
- "createdByUser": {
- "key": "7",
- "href": "/objects/company-config/user/7"
}, - "modifiedByUser": {
- "key": "7",
- "href": "/objects/company-config/user/7"
}
}, - "jointPayee": {
- "id": null,
- "key": null,
- "printAs": null
}, - "href": "/objects/accounts-payable/payment-detail/1133"
}, - "ia::meta": {
- "totalCount": 1,
- "totalSuccess": 1,
- "totalError": 0
}
}
Queries an object for filtered data.
object | string Object type to query, in the form Example: "accounts-payable/payment-detail" | ||||||||
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 has (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 result set, 4000 maximum. Example: 100 |
OK
Bad Request
{- "object": "accounts-payable/payment-detail",
- "fields": [
- "id",
- "bill.id",
- "billLine.id",
- "href"
], - "filters": [
- {
- "$eq": {
- "state": "draft"
}
}, - {
- "$eq": {
- "state": "confirmed"
}
}
], - "filterExpression": "1 or 2",
- "orderBy": [
- {
- "id": "asc"
}
]
}
{- "ia::result": [
- {
- "id": "1",
- "bill.id": "298",
- "billLine.id": "1530",
- "href": "/objects/accounts-payable/payment-detail/1"
}, - {
- "id": "2",
- "bill.id": "368",
- "billLine.id": "1736",
- "href": "/objects/accounts-payable/payment-detail/2"
}
], - "ia::meta": {
- "totalCount": 2,
- "start": 1,
- "pageSize": 100,
- "next": null,
- "previous": null
}
}