The Process Statement Of Accounts 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
Default: Due Date
Default: false
Default: true
Default: 1
Default: true
Default: false
Default: false
Default: false
Default: false
Default: false
Default: Categorize by Voucher (Consolidated)
Default: false
{
"id": "process-statement-of-accounts_abc123",
"created_at": "2024-01-15T09: 30: 00Z",
"updated_at": "2024-01-15T09: 30: 00Z",
"frequency": "frequency_example",
"company": "Example Corp",
"from_date": "2024-01-15",
"to_date": "2024-01-15",
"customer_collection": "customer_collection_example",
"collection_name": "collection_name_example",
"account": "account_example",
"finance_book": "finance_book_example",
"orientation": "orientation_example",
"start_date": "2024-01-15",
"currency": "USD",
"include_ageing": false,
"ageing_based_on": "Due Date",
"enable_auto_email": false,
"primary_mandatory": true,
"filter_duration": 1,
"subject": "subject_example",
"body": "body_example",
"letter_head": "letter_head_example",
"terms_and_conditions": "terms_and_conditions_example",
"include_break": true,
"show_net_values_in_party_account": false,
"sender": "sender_example",
"report": "report_example",
"posting_date": "2024-01-15",
"payment_terms_template": "payment_terms_template_example",
"sales_partner": "sales_partner_example",
"sales_person": "sales_person_example",
"territory": "territory_example",
"based_on_payment_terms": false,
"pdf_name": "pdf_name_example",
"ignore_exchange_rate_revaluation_journals": false,
"ignore_cr_dr_notes": false,
"show_remarks": false,
"categorize_by": "Categorize by Voucher (Consolidated)",
"show_future_payments": false,
"print_format": "print_format_example"
} /api/accounts/process-statement-of-accounts/{id} Retrieve a process statement of accounts
Retrieves the details of an existing process statement of accounts. Supply the unique process statement of accounts ID that was returned from a previous request.
Path parameters
The identifier of the process statement of accounts to retrieve.
Returns
Returns the process statement of accounts object if a valid identifier was provided.
curl https://api.overplane.dev/api/accounts/process-statement-of-accounts/process-statement-of-accounts_abc123 \
-H "Authorization: Bearer sk_test_..." {
"id": "process-statement-of-accounts_abc123",
"created_at": "2024-01-15T09: 30: 00Z",
"updated_at": "2024-01-15T09: 30: 00Z",
"frequency": "frequency_example",
"company": "Example Corp",
"from_date": "2024-01-15",
"to_date": "2024-01-15",
"customer_collection": "customer_collection_example",
"collection_name": "collection_name_example",
"account": "account_example",
"finance_book": "finance_book_example",
"orientation": "orientation_example",
"start_date": "2024-01-15",
"currency": "USD",
"include_ageing": false,
"ageing_based_on": "Due Date",
"enable_auto_email": false,
"primary_mandatory": true,
"filter_duration": 1,
"subject": "subject_example",
"body": "body_example",
"letter_head": "letter_head_example",
"terms_and_conditions": "terms_and_conditions_example",
"include_break": true,
"show_net_values_in_party_account": false,
"sender": "sender_example",
"report": "report_example",
"posting_date": "2024-01-15",
"payment_terms_template": "payment_terms_template_example",
"sales_partner": "sales_partner_example",
"sales_person": "sales_person_example",
"territory": "territory_example",
"based_on_payment_terms": false,
"pdf_name": "pdf_name_example",
"ignore_exchange_rate_revaluation_journals": false,
"ignore_cr_dr_notes": false,
"show_remarks": false,
"categorize_by": "Categorize by Voucher (Consolidated)",
"show_future_payments": false,
"print_format": "print_format_example"
} /api/accounts/process-statement-of-accounts List all process statement of accountss
Returns a list of process statement of accountss. 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 process statement of accounts objects.
curl https://api.overplane.dev/api/accounts/process-statement-of-accounts \
-H "Authorization: Bearer sk_test_..." {
"data": [
{
"id": "process-statement-of-accounts_abc123",
"created_at": "2024-01-15T09: 30: 00Z",
"updated_at": "2024-01-15T09: 30: 00Z",
"frequency": "frequency_example",
"company": "Example Corp",
"from_date": "2024-01-15",
"to_date": "2024-01-15",
"customer_collection": "customer_collection_example",
"collection_name": "collection_name_example",
"account": "account_example",
"finance_book": "finance_book_example",
"orientation": "orientation_example",
"start_date": "2024-01-15",
"currency": "USD",
"include_ageing": false,
"ageing_based_on": "Due Date",
"enable_auto_email": false,
"primary_mandatory": true,
"filter_duration": 1,
"subject": "subject_example",
"body": "body_example",
"letter_head": "letter_head_example",
"terms_and_conditions": "terms_and_conditions_example",
"include_break": true,
"show_net_values_in_party_account": false,
"sender": "sender_example",
"report": "report_example",
"posting_date": "2024-01-15",
"payment_terms_template": "payment_terms_template_example",
"sales_partner": "sales_partner_example",
"sales_person": "sales_person_example",
"territory": "territory_example",
"based_on_payment_terms": false,
"pdf_name": "pdf_name_example",
"ignore_exchange_rate_revaluation_journals": false,
"ignore_cr_dr_notes": false,
"show_remarks": false,
"categorize_by": "Categorize by Voucher (Consolidated)",
"show_future_payments": false,
"print_format": "print_format_example"
}
],
"has_more": false,
"total": 1
} /api/accounts/process-statement-of-accounts Create a process statement of accounts
Creates a new process statement of accounts object.
Body parameters
Default: false
Default: Due Date
Default: false
Default: true
Default: 1
Default: true
Default: false
Default: false
Default: false
Default: false
Default: false
Default: Categorize by Voucher (Consolidated)
Default: false
Returns
Returns the newly created process statement of accounts object if the call succeeded.
curl https://api.overplane.dev/api/accounts/process-statement-of-accounts \
-H "Authorization: Bearer sk_test_..." \
-X POST \
-H "Content-Type: application/json" \
-d '{"company":"Example Corp","report":"report_example"}' {
"id": "process-statement-of-accounts_abc123",
"created_at": "2024-01-15T09: 30: 00Z",
"updated_at": "2024-01-15T09: 30: 00Z",
"frequency": "frequency_example",
"company": "Example Corp",
"from_date": "2024-01-15",
"to_date": "2024-01-15",
"customer_collection": "customer_collection_example",
"collection_name": "collection_name_example",
"account": "account_example",
"finance_book": "finance_book_example",
"orientation": "orientation_example",
"start_date": "2024-01-15",
"currency": "USD",
"include_ageing": false,
"ageing_based_on": "Due Date",
"enable_auto_email": false,
"primary_mandatory": true,
"filter_duration": 1,
"subject": "subject_example",
"body": "body_example",
"letter_head": "letter_head_example",
"terms_and_conditions": "terms_and_conditions_example",
"include_break": true,
"show_net_values_in_party_account": false,
"sender": "sender_example",
"report": "report_example",
"posting_date": "2024-01-15",
"payment_terms_template": "payment_terms_template_example",
"sales_partner": "sales_partner_example",
"sales_person": "sales_person_example",
"territory": "territory_example",
"based_on_payment_terms": false,
"pdf_name": "pdf_name_example",
"ignore_exchange_rate_revaluation_journals": false,
"ignore_cr_dr_notes": false,
"show_remarks": false,
"categorize_by": "Categorize by Voucher (Consolidated)",
"show_future_payments": false,
"print_format": "print_format_example"
} /api/accounts/process-statement-of-accounts/{id} Update a process statement of accounts
Updates the specified process statement of accounts by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
Path parameters
The identifier of the process statement of accounts to update.
Body parameters
Default: false
Default: Due Date
Default: false
Default: true
Default: 1
Default: true
Default: false
Default: false
Default: false
Default: false
Default: false
Default: Categorize by Voucher (Consolidated)
Default: false
Returns
Returns the updated process statement of accounts object.
curl https://api.overplane.dev/api/accounts/process-statement-of-accounts/process-statement-of-accounts_abc123 \
-H "Authorization: Bearer sk_test_..." \
-X PATCH \
-H "Content-Type: application/json" \
-d '{"frequency":"frequency_example","company":"Example Corp"}' {
"id": "process-statement-of-accounts_abc123",
"created_at": "2024-01-15T09: 30: 00Z",
"updated_at": "2024-01-15T09: 30: 00Z",
"frequency": "frequency_example",
"company": "Example Corp",
"from_date": "2024-01-15",
"to_date": "2024-01-15",
"customer_collection": "customer_collection_example",
"collection_name": "collection_name_example",
"account": "account_example",
"finance_book": "finance_book_example",
"orientation": "orientation_example",
"start_date": "2024-01-15",
"currency": "USD",
"include_ageing": false,
"ageing_based_on": "Due Date",
"enable_auto_email": false,
"primary_mandatory": true,
"filter_duration": 1,
"subject": "subject_example",
"body": "body_example",
"letter_head": "letter_head_example",
"terms_and_conditions": "terms_and_conditions_example",
"include_break": true,
"show_net_values_in_party_account": false,
"sender": "sender_example",
"report": "report_example",
"posting_date": "2024-01-15",
"payment_terms_template": "payment_terms_template_example",
"sales_partner": "sales_partner_example",
"sales_person": "sales_person_example",
"territory": "territory_example",
"based_on_payment_terms": false,
"pdf_name": "pdf_name_example",
"ignore_exchange_rate_revaluation_journals": false,
"ignore_cr_dr_notes": false,
"show_remarks": false,
"categorize_by": "Categorize by Voucher (Consolidated)",
"show_future_payments": false,
"print_format": "print_format_example"
} /api/accounts/process-statement-of-accounts/{id} Delete a process statement of accounts
Permanently deletes a process statement of accounts. This cannot be undone.
Path parameters
The identifier of the process statement of accounts to delete.
Returns
Returns a confirmation that the process statement of accounts has been deleted.
curl https://api.overplane.dev/api/accounts/process-statement-of-accounts/process-statement-of-accounts_abc123 \
-H "Authorization: Bearer sk_test_..." \
-X DELETE {
"id": "process-statement-of-accounts_abc123",
"deleted": true
} Line items
Child objects that belong to this process statement of accounts. These are accessed via the parent's ID.
Process Statement Of Accounts CC
Attributes
Endpoints
/api/accounts/process-statement-of-accounts-c-c?parent_id={id} /api/accounts/process-statement-of-accounts-c-c /api/accounts/process-statement-of-accounts-c-c/{id} /api/accounts/process-statement-of-accounts-c-c/{id} /api/accounts/process-statement-of-accounts-c-c/reorder {
"id": "process-statement-of-accounts-c-c_abc123",
"idx": 1,
"process_statement_of_accounts_id": "process_statement_of_accounts_id_example",
"cc": "cc_example"
} Process Statement Of Accounts Customer
Attributes
Endpoints
/api/accounts/process-statement-of-accounts-customer?parent_id={id} /api/accounts/process-statement-of-accounts-customer /api/accounts/process-statement-of-accounts-customer/{id} /api/accounts/process-statement-of-accounts-customer/{id} /api/accounts/process-statement-of-accounts-customer/reorder {
"id": "process-statement-of-accounts-customer_abc123",
"idx": 1,
"process_statement_of_accounts_id": "process_statement_of_accounts_id_example",
"customer": "customer_example",
"primary_email": "user@example.com",
"billing_email": "user@example.com",
"customer_name": "customer_name_example"
} PSOA Cost Center
Attributes
Endpoints
/api/accounts/p-s-o-a-cost-center?parent_id={id} /api/accounts/p-s-o-a-cost-center /api/accounts/p-s-o-a-cost-center/{id} /api/accounts/p-s-o-a-cost-center/{id} /api/accounts/p-s-o-a-cost-center/reorder {
"id": "p-s-o-a-cost-center_abc123",
"idx": 1,
"process_statement_of_accounts_id": "process_statement_of_accounts_id_example",
"cost_center_name": "cost_center_name_example"
} PSOA Project
Attributes
Endpoints
/api/accounts/p-s-o-a-project?parent_id={id} /api/accounts/p-s-o-a-project /api/accounts/p-s-o-a-project/{id} /api/accounts/p-s-o-a-project/{id} /api/accounts/p-s-o-a-project/reorder {
"id": "p-s-o-a-project_abc123",
"idx": 1,
"process_statement_of_accounts_id": "process_statement_of_accounts_id_example",
"project_name": "project_name_example"
}