Create a bank statement
Headers
-
Content-Type string
-
Accept string
-
X-PLANNR-ACCOUNT-UUID string
Body Required
POST /api/v1/bank-statement
curl \
-X POST https://api.plannrcrm.com/api/v1/bank-statement \
-H "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-H "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}" \
-d '{"statement_uuid":"28c8bdfa-0e8b-4743-955c-f6f04c1a4b62","date":"2024-11-20","name":"Natwest Statement #8434","reference":"BAT#8434"}'
Request examples
# Headers
Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}
Content-Type: application/json
Accept: application/json
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"statement_uuid": "28c8bdfa-0e8b-4743-955c-f6f04c1a4b62",
"date": "2024-11-20",
"name": "Natwest Statement #8434",
"reference": "BAT#8434"
}
Response examples (201)
{
"date": "2024-11-20",
"name": "Aviva",
"uuid": "9b5392af-f4bb-455d-8fe0-f84738c1163e",
"number": 23,
"reference": "SW#8434",
"statement": {
"name": "01/06/2022 - 30/06/2022",
"uuid": "f599a31f-ad2a-4c21-af14-cd30860cbf25",
"locked": false,
"end_date": "2022-06-01",
"locked_at": "2024-11-20T13:24:04+00:00",
"locked_by": "App\\Http\\Resources\\AccountResource",
"created_at": "2024-11-20T13:24:04+00:00",
"start_date": "2022-06-30",
"updated_at": "2024-11-20T13:24:04+00:00",
"expectations_count": 6,
"total_expectations": {
"amount": "124585",
"currency": "GBP",
"formatted": "£1,245.85"
},
"statement_transactions": "App\\Http\\Resources\\StatementTransactionResource",
"total_bank_transactions": {
"amount": "125599",
"currency": "GBP",
"formatted": "£1,255.99"
},
"statement_transactions_count": 6,
"total_statement_transactions": {
"amount": "125599",
"currency": "GBP",
"formatted": "£1,255.99"
},
"total_expectation_amount_reconciled_to_bank": {
"amount": "125599",
"currency": "GBP",
"formatted": "£1,255.99"
},
"total_expectation_percentage_reconciled_to_bank": {
"amount": "8570",
"currency": "GBP",
"formatted": "£85.70"
}
},
"created_at": "2024-11-20T13:24:04+00:00",
"updated_at": "2024-11-20T13:24:04+00:00",
"total_amount": {
"amount": "345895",
"currency": "GBP",
"formatted": "£3,458.95"
},
"bank_transactions": [
{
"date": "2022-07-15",
"firm": "App\\Http\\Resources\\FirmResource",
"uuid": "ab2fa00c-2047-471c-a99c-34fb312fa63f",
"amount": {
"amount": "12399",
"currency": "GBP",
"formatted": "£123.99"
},
"account": "App\\Http\\Resources\\AccountResource",
"filename": "Natwest June 2022 Statement.xlsx",
"metadata": {
"client_name": "Gareth Thompson"
},
"reference": "VitalityLtd",
"statement": "App\\Http\\Resources\\StatementResource",
"created_at": "2024-11-20T13:24:04+00:00",
"updated_at": "2024-11-20T13:24:04+00:00",
"bank_statement": "App\\Http\\Resources\\BankStatementResource"
}
],
"reconciled_amount": {
"amount": "12849",
"currency": "GBP",
"formatted": "£128.49"
},
"reconciled_percentage": 95.68,
"bank_transactions_count": 6
}