The Payment Reconciliation Payment 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.
{
"id": "payment-reconciliation-payment_abc123",
"created_at": "2024-01-15T09: 30: 00Z",
"updated_at": "2024-01-15T09: 30: 00Z",
"reference_type": "reference_type_example",
"reference_name": "reference_name_example",
"posting_date": "2024-01-15",
"is_advance": "is_advance_example",
"reference_row": "reference_row_example",
"amount": 0,
"currency": "USD",
"difference_amount": 0,
"exchange_rate": 0,
"cost_center": "cost_center_example",
"remarks": "remarks_example"
} /api/accounts/payment-reconciliation-payment/{id} Retrieve a payment reconciliation payment
Retrieves the details of an existing payment reconciliation payment. Supply the unique payment reconciliation payment ID that was returned from a previous request.
Path parameters
The identifier of the payment reconciliation payment to retrieve.
Returns
Returns the payment reconciliation payment object if a valid identifier was provided.
curl https://api.overplane.dev/api/accounts/payment-reconciliation-payment/payment-reconciliation-payment_abc123 \
-H "Authorization: Bearer sk_test_..." {
"id": "payment-reconciliation-payment_abc123",
"created_at": "2024-01-15T09: 30: 00Z",
"updated_at": "2024-01-15T09: 30: 00Z",
"reference_type": "reference_type_example",
"reference_name": "reference_name_example",
"posting_date": "2024-01-15",
"is_advance": "is_advance_example",
"reference_row": "reference_row_example",
"amount": 0,
"currency": "USD",
"difference_amount": 0,
"exchange_rate": 0,
"cost_center": "cost_center_example",
"remarks": "remarks_example"
} /api/accounts/payment-reconciliation-payment List all payment reconciliation payments
Returns a list of payment reconciliation payments. 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 payment objects.
curl https://api.overplane.dev/api/accounts/payment-reconciliation-payment \
-H "Authorization: Bearer sk_test_..." {
"data": [
{
"id": "payment-reconciliation-payment_abc123",
"created_at": "2024-01-15T09: 30: 00Z",
"updated_at": "2024-01-15T09: 30: 00Z",
"reference_type": "reference_type_example",
"reference_name": "reference_name_example",
"posting_date": "2024-01-15",
"is_advance": "is_advance_example",
"reference_row": "reference_row_example",
"amount": 0,
"currency": "USD",
"difference_amount": 0,
"exchange_rate": 0,
"cost_center": "cost_center_example",
"remarks": "remarks_example"
}
],
"has_more": false,
"total": 1
} /api/accounts/payment-reconciliation-payment Create a payment reconciliation payment
Creates a new payment reconciliation payment object.
Body parameters
Returns
Returns the newly created payment reconciliation payment object if the call succeeded.
curl https://api.overplane.dev/api/accounts/payment-reconciliation-payment \
-H "Authorization: Bearer sk_test_..." \
-X POST \
-H "Content-Type: application/json" {
"id": "payment-reconciliation-payment_abc123",
"created_at": "2024-01-15T09: 30: 00Z",
"updated_at": "2024-01-15T09: 30: 00Z",
"reference_type": "reference_type_example",
"reference_name": "reference_name_example",
"posting_date": "2024-01-15",
"is_advance": "is_advance_example",
"reference_row": "reference_row_example",
"amount": 0,
"currency": "USD",
"difference_amount": 0,
"exchange_rate": 0,
"cost_center": "cost_center_example",
"remarks": "remarks_example"
} /api/accounts/payment-reconciliation-payment/{id} Update a payment reconciliation payment
Updates the specified payment reconciliation payment by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
Path parameters
The identifier of the payment reconciliation payment to update.
Body parameters
Returns
Returns the updated payment reconciliation payment object.
curl https://api.overplane.dev/api/accounts/payment-reconciliation-payment/payment-reconciliation-payment_abc123 \
-H "Authorization: Bearer sk_test_..." \
-X PATCH \
-H "Content-Type: application/json" \
-d '{"reference_type":"reference_type_example","reference_name":"reference_name_example"}' {
"id": "payment-reconciliation-payment_abc123",
"created_at": "2024-01-15T09: 30: 00Z",
"updated_at": "2024-01-15T09: 30: 00Z",
"reference_type": "reference_type_example",
"reference_name": "reference_name_example",
"posting_date": "2024-01-15",
"is_advance": "is_advance_example",
"reference_row": "reference_row_example",
"amount": 0,
"currency": "USD",
"difference_amount": 0,
"exchange_rate": 0,
"cost_center": "cost_center_example",
"remarks": "remarks_example"
} /api/accounts/payment-reconciliation-payment/{id} Delete a payment reconciliation payment
Permanently deletes a payment reconciliation payment. This cannot be undone.
Path parameters
The identifier of the payment reconciliation payment to delete.
Returns
Returns a confirmation that the payment reconciliation payment has been deleted.
curl https://api.overplane.dev/api/accounts/payment-reconciliation-payment/payment-reconciliation-payment_abc123 \
-H "Authorization: Bearer sk_test_..." \
-X DELETE {
"id": "payment-reconciliation-payment_abc123",
"deleted": true
}