The Bisect Accounting Statements 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: BFS
{
"id": "bisect-accounting-statements_abc123",
"created_at": "2024-01-15T09: 30: 00Z",
"updated_at": "2024-01-15T09: 30: 00Z",
"from_date": "2024-01-15",
"to_date": "2024-01-15",
"algorithm": "BFS",
"current_node": "current_node_example",
"current_from_date": "2024-01-15",
"current_to_date": "2024-01-15",
"p_l_summary": 0,
"b_s_summary": 0,
"difference": 0,
"company": "Example Corp"
} /api/accounts/bisect-accounting-statements/{id} Retrieve a bisect accounting statements
Retrieves the details of an existing bisect accounting statements. Supply the unique bisect accounting statements ID that was returned from a previous request.
Path parameters
The identifier of the bisect accounting statements to retrieve.
Returns
Returns the bisect accounting statements object if a valid identifier was provided.
curl https://api.overplane.dev/api/accounts/bisect-accounting-statements/bisect-accounting-statements_abc123 \
-H "Authorization: Bearer sk_test_..." {
"id": "bisect-accounting-statements_abc123",
"created_at": "2024-01-15T09: 30: 00Z",
"updated_at": "2024-01-15T09: 30: 00Z",
"from_date": "2024-01-15",
"to_date": "2024-01-15",
"algorithm": "BFS",
"current_node": "current_node_example",
"current_from_date": "2024-01-15",
"current_to_date": "2024-01-15",
"p_l_summary": 0,
"b_s_summary": 0,
"difference": 0,
"company": "Example Corp"
} /api/accounts/bisect-accounting-statements List all bisect accounting statementss
Returns a list of bisect accounting statementss. 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 bisect accounting statements objects.
curl https://api.overplane.dev/api/accounts/bisect-accounting-statements \
-H "Authorization: Bearer sk_test_..." {
"data": [
{
"id": "bisect-accounting-statements_abc123",
"created_at": "2024-01-15T09: 30: 00Z",
"updated_at": "2024-01-15T09: 30: 00Z",
"from_date": "2024-01-15",
"to_date": "2024-01-15",
"algorithm": "BFS",
"current_node": "current_node_example",
"current_from_date": "2024-01-15",
"current_to_date": "2024-01-15",
"p_l_summary": 0,
"b_s_summary": 0,
"difference": 0,
"company": "Example Corp"
}
],
"has_more": false,
"total": 1
} /api/accounts/bisect-accounting-statements Create a bisect accounting statements
Creates a new bisect accounting statements object.
Body parameters
Default: BFS
Returns
Returns the newly created bisect accounting statements object if the call succeeded.
curl https://api.overplane.dev/api/accounts/bisect-accounting-statements \
-H "Authorization: Bearer sk_test_..." \
-X POST \
-H "Content-Type: application/json" {
"id": "bisect-accounting-statements_abc123",
"created_at": "2024-01-15T09: 30: 00Z",
"updated_at": "2024-01-15T09: 30: 00Z",
"from_date": "2024-01-15",
"to_date": "2024-01-15",
"algorithm": "BFS",
"current_node": "current_node_example",
"current_from_date": "2024-01-15",
"current_to_date": "2024-01-15",
"p_l_summary": 0,
"b_s_summary": 0,
"difference": 0,
"company": "Example Corp"
} /api/accounts/bisect-accounting-statements/{id} Update a bisect accounting statements
Updates the specified bisect accounting statements by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
Path parameters
The identifier of the bisect accounting statements to update.
Body parameters
Default: BFS
Returns
Returns the updated bisect accounting statements object.
curl https://api.overplane.dev/api/accounts/bisect-accounting-statements/bisect-accounting-statements_abc123 \
-H "Authorization: Bearer sk_test_..." \
-X PATCH \
-H "Content-Type: application/json" \
-d '{"from_date":"2024-01-15","to_date":"2024-01-15"}' {
"id": "bisect-accounting-statements_abc123",
"created_at": "2024-01-15T09: 30: 00Z",
"updated_at": "2024-01-15T09: 30: 00Z",
"from_date": "2024-01-15",
"to_date": "2024-01-15",
"algorithm": "BFS",
"current_node": "current_node_example",
"current_from_date": "2024-01-15",
"current_to_date": "2024-01-15",
"p_l_summary": 0,
"b_s_summary": 0,
"difference": 0,
"company": "Example Corp"
} /api/accounts/bisect-accounting-statements/{id} Delete a bisect accounting statements
Permanently deletes a bisect accounting statements. This cannot be undone.
Path parameters
The identifier of the bisect accounting statements to delete.
Returns
Returns a confirmation that the bisect accounting statements has been deleted.
curl https://api.overplane.dev/api/accounts/bisect-accounting-statements/bisect-accounting-statements_abc123 \
-H "Authorization: Bearer sk_test_..." \
-X DELETE {
"id": "bisect-accounting-statements_abc123",
"deleted": true
}