The Payment Reconciliation object
Attributes
Unique identifier for the object.
ISO 8601 timestamp of when the object was created.
ISO 8601 timestamp of when the object was last updated.
Default: 50
Default: 50
{
"id": "payment-reconciliation_abc123",
"created_at": "2024-01-15T09: 30: 00Z",
"updated_at": "2024-01-15T09: 30: 00Z",
"company": "Example Corp",
"party_type": "party_type_example",
"party": "party_example",
"receivable_payable_account": "receivable_payable_account_example",
"bank_cash_account": "bank_cash_account_example",
"from_invoice_date": "2024-01-15",
"to_invoice_date": "2024-01-15",
"minimum_invoice_amount": 0,
"invoice_limit": 50,
"from_payment_date": "2024-01-15",
"to_payment_date": "2024-01-15",
"minimum_payment_amount": 0,
"maximum_payment_amount": 0,
"payment_limit": 50,
"maximum_invoice_amount": 0,
"cost_center": "cost_center_example",
"project": "project_example",
"default_advance_account": "default_advance_account_example",
"invoice_name": "invoice_name_example",
"payment_name": "payment_name_example"
} /api/accounts/payment-reconciliation/{id} Retrieve a payment reconciliation
Retrieves the details of an existing payment reconciliation. Supply the unique payment reconciliation ID that was returned from a previous request.
Path parameters
The identifier of the payment reconciliation to retrieve.
Returns
Returns the payment reconciliation object if a valid identifier was provided.
curl https://api.overplane.dev/api/accounts/payment-reconciliation/payment-reconciliation_abc123 \
-H "Authorization: Bearer sk_test_..." {
"id": "payment-reconciliation_abc123",
"created_at": "2024-01-15T09: 30: 00Z",
"updated_at": "2024-01-15T09: 30: 00Z",
"company": "Example Corp",
"party_type": "party_type_example",
"party": "party_example",
"receivable_payable_account": "receivable_payable_account_example",
"bank_cash_account": "bank_cash_account_example",
"from_invoice_date": "2024-01-15",
"to_invoice_date": "2024-01-15",
"minimum_invoice_amount": 0,
"invoice_limit": 50,
"from_payment_date": "2024-01-15",
"to_payment_date": "2024-01-15",
"minimum_payment_amount": 0,
"maximum_payment_amount": 0,
"payment_limit": 50,
"maximum_invoice_amount": 0,
"cost_center": "cost_center_example",
"project": "project_example",
"default_advance_account": "default_advance_account_example",
"invoice_name": "invoice_name_example",
"payment_name": "payment_name_example"
} /api/accounts/payment-reconciliation List all payment reconciliations
Returns a list of payment reconciliations. The results are sorted by creation date, with the most recently created appearing first.
Query parameters
Maximum number of objects to return. Default: 20.
Number of objects to skip for pagination. Default: 0.
Returns
A paginated list of payment reconciliation objects.
curl https://api.overplane.dev/api/accounts/payment-reconciliation \
-H "Authorization: Bearer sk_test_..." {
"data": [
{
"id": "payment-reconciliation_abc123",
"created_at": "2024-01-15T09: 30: 00Z",
"updated_at": "2024-01-15T09: 30: 00Z",
"company": "Example Corp",
"party_type": "party_type_example",
"party": "party_example",
"receivable_payable_account": "receivable_payable_account_example",
"bank_cash_account": "bank_cash_account_example",
"from_invoice_date": "2024-01-15",
"to_invoice_date": "2024-01-15",
"minimum_invoice_amount": 0,
"invoice_limit": 50,
"from_payment_date": "2024-01-15",
"to_payment_date": "2024-01-15",
"minimum_payment_amount": 0,
"maximum_payment_amount": 0,
"payment_limit": 50,
"maximum_invoice_amount": 0,
"cost_center": "cost_center_example",
"project": "project_example",
"default_advance_account": "default_advance_account_example",
"invoice_name": "invoice_name_example",
"payment_name": "payment_name_example"
}
],
"has_more": false,
"total": 1
} /api/accounts/payment-reconciliation Create a payment reconciliation
Creates a new payment reconciliation object.
Body parameters
Default: 50
Default: 50
Returns
Returns the newly created payment reconciliation object if the call succeeded.
curl https://api.overplane.dev/api/accounts/payment-reconciliation \
-H "Authorization: Bearer sk_test_..." \
-X POST \
-H "Content-Type: application/json" \
-d '{"company":"Example Corp","party_type":"party_type_example","party":"party_example","receivable_payable_account":"receivable_payable_account_example"}' {
"id": "payment-reconciliation_abc123",
"created_at": "2024-01-15T09: 30: 00Z",
"updated_at": "2024-01-15T09: 30: 00Z",
"company": "Example Corp",
"party_type": "party_type_example",
"party": "party_example",
"receivable_payable_account": "receivable_payable_account_example",
"bank_cash_account": "bank_cash_account_example",
"from_invoice_date": "2024-01-15",
"to_invoice_date": "2024-01-15",
"minimum_invoice_amount": 0,
"invoice_limit": 50,
"from_payment_date": "2024-01-15",
"to_payment_date": "2024-01-15",
"minimum_payment_amount": 0,
"maximum_payment_amount": 0,
"payment_limit": 50,
"maximum_invoice_amount": 0,
"cost_center": "cost_center_example",
"project": "project_example",
"default_advance_account": "default_advance_account_example",
"invoice_name": "invoice_name_example",
"payment_name": "payment_name_example"
} /api/accounts/payment-reconciliation/{id} Update a payment reconciliation
Updates the specified payment reconciliation by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
Path parameters
The identifier of the payment reconciliation to update.
Body parameters
Default: 50
Default: 50
Returns
Returns the updated payment reconciliation object.
curl https://api.overplane.dev/api/accounts/payment-reconciliation/payment-reconciliation_abc123 \
-H "Authorization: Bearer sk_test_..." \
-X PATCH \
-H "Content-Type: application/json" \
-d '{"company":"Example Corp","party_type":"party_type_example"}' {
"id": "payment-reconciliation_abc123",
"created_at": "2024-01-15T09: 30: 00Z",
"updated_at": "2024-01-15T09: 30: 00Z",
"company": "Example Corp",
"party_type": "party_type_example",
"party": "party_example",
"receivable_payable_account": "receivable_payable_account_example",
"bank_cash_account": "bank_cash_account_example",
"from_invoice_date": "2024-01-15",
"to_invoice_date": "2024-01-15",
"minimum_invoice_amount": 0,
"invoice_limit": 50,
"from_payment_date": "2024-01-15",
"to_payment_date": "2024-01-15",
"minimum_payment_amount": 0,
"maximum_payment_amount": 0,
"payment_limit": 50,
"maximum_invoice_amount": 0,
"cost_center": "cost_center_example",
"project": "project_example",
"default_advance_account": "default_advance_account_example",
"invoice_name": "invoice_name_example",
"payment_name": "payment_name_example"
} /api/accounts/payment-reconciliation/{id} Delete a payment reconciliation
Permanently deletes a payment reconciliation. This cannot be undone.
Path parameters
The identifier of the payment reconciliation to delete.
Returns
Returns a confirmation that the payment reconciliation has been deleted.
curl https://api.overplane.dev/api/accounts/payment-reconciliation/payment-reconciliation_abc123 \
-H "Authorization: Bearer sk_test_..." \
-X DELETE {
"id": "payment-reconciliation_abc123",
"deleted": true
}