The Bank Reconciliation Tool 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: false
{
"id": "bank-reconciliation-tool_abc123",
"created_at": "2024-01-15T09: 30: 00Z",
"updated_at": "2024-01-15T09: 30: 00Z",
"company": "Example Corp",
"bank_account": "bank_account_example",
"bank_statement_from_date": "2024-01-15",
"bank_statement_to_date": "2024-01-15",
"account_opening_balance": 0,
"bank_statement_closing_balance": 0,
"from_reference_date": "2024-01-15",
"to_reference_date": "2024-01-15",
"filter_by_reference_date": false,
"account_currency": "USD"
} /api/accounts/bank-reconciliation-tool/{id} Retrieve a bank reconciliation tool
Retrieves the details of an existing bank reconciliation tool. Supply the unique bank reconciliation tool ID that was returned from a previous request.
Path parameters
The identifier of the bank reconciliation tool to retrieve.
Returns
Returns the bank reconciliation tool object if a valid identifier was provided.
curl https://api.overplane.dev/api/accounts/bank-reconciliation-tool/bank-reconciliation-tool_abc123 \
-H "Authorization: Bearer sk_test_..." {
"id": "bank-reconciliation-tool_abc123",
"created_at": "2024-01-15T09: 30: 00Z",
"updated_at": "2024-01-15T09: 30: 00Z",
"company": "Example Corp",
"bank_account": "bank_account_example",
"bank_statement_from_date": "2024-01-15",
"bank_statement_to_date": "2024-01-15",
"account_opening_balance": 0,
"bank_statement_closing_balance": 0,
"from_reference_date": "2024-01-15",
"to_reference_date": "2024-01-15",
"filter_by_reference_date": false,
"account_currency": "USD"
} /api/accounts/bank-reconciliation-tool List all bank reconciliation tools
Returns a list of bank reconciliation tools. 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 bank reconciliation tool objects.
curl https://api.overplane.dev/api/accounts/bank-reconciliation-tool \
-H "Authorization: Bearer sk_test_..." {
"data": [
{
"id": "bank-reconciliation-tool_abc123",
"created_at": "2024-01-15T09: 30: 00Z",
"updated_at": "2024-01-15T09: 30: 00Z",
"company": "Example Corp",
"bank_account": "bank_account_example",
"bank_statement_from_date": "2024-01-15",
"bank_statement_to_date": "2024-01-15",
"account_opening_balance": 0,
"bank_statement_closing_balance": 0,
"from_reference_date": "2024-01-15",
"to_reference_date": "2024-01-15",
"filter_by_reference_date": false,
"account_currency": "USD"
}
],
"has_more": false,
"total": 1
} /api/accounts/bank-reconciliation-tool Create a bank reconciliation tool
Creates a new bank reconciliation tool object.
Body parameters
Default: false
Returns
Returns the newly created bank reconciliation tool object if the call succeeded.
curl https://api.overplane.dev/api/accounts/bank-reconciliation-tool \
-H "Authorization: Bearer sk_test_..." \
-X POST \
-H "Content-Type: application/json" {
"id": "bank-reconciliation-tool_abc123",
"created_at": "2024-01-15T09: 30: 00Z",
"updated_at": "2024-01-15T09: 30: 00Z",
"company": "Example Corp",
"bank_account": "bank_account_example",
"bank_statement_from_date": "2024-01-15",
"bank_statement_to_date": "2024-01-15",
"account_opening_balance": 0,
"bank_statement_closing_balance": 0,
"from_reference_date": "2024-01-15",
"to_reference_date": "2024-01-15",
"filter_by_reference_date": false,
"account_currency": "USD"
} /api/accounts/bank-reconciliation-tool/{id} Update a bank reconciliation tool
Updates the specified bank reconciliation tool by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
Path parameters
The identifier of the bank reconciliation tool to update.
Body parameters
Default: false
Returns
Returns the updated bank reconciliation tool object.
curl https://api.overplane.dev/api/accounts/bank-reconciliation-tool/bank-reconciliation-tool_abc123 \
-H "Authorization: Bearer sk_test_..." \
-X PATCH \
-H "Content-Type: application/json" \
-d '{"company":"Example Corp","bank_account":"bank_account_example"}' {
"id": "bank-reconciliation-tool_abc123",
"created_at": "2024-01-15T09: 30: 00Z",
"updated_at": "2024-01-15T09: 30: 00Z",
"company": "Example Corp",
"bank_account": "bank_account_example",
"bank_statement_from_date": "2024-01-15",
"bank_statement_to_date": "2024-01-15",
"account_opening_balance": 0,
"bank_statement_closing_balance": 0,
"from_reference_date": "2024-01-15",
"to_reference_date": "2024-01-15",
"filter_by_reference_date": false,
"account_currency": "USD"
} /api/accounts/bank-reconciliation-tool/{id} Delete a bank reconciliation tool
Permanently deletes a bank reconciliation tool. This cannot be undone.
Path parameters
The identifier of the bank reconciliation tool to delete.
Returns
Returns a confirmation that the bank reconciliation tool has been deleted.
curl https://api.overplane.dev/api/accounts/bank-reconciliation-tool/bank-reconciliation-tool_abc123 \
-H "Authorization: Bearer sk_test_..." \
-X DELETE {
"id": "bank-reconciliation-tool_abc123",
"deleted": true
}