Get all provider statements
Headers
-
Content-Type string
-
Accept string
-
X-PLANNR-ACCOUNT-UUID string
Query parameters
-
filter[uuid] string
Filter by a comma separated list of UUIDs.
-
filter[statement_uuids] string
Comma separated list of payment period statement UUIDs. e.g. fb8ca37d-6c5b-4688-bb69-1aacfffb8bea
-
filter[name] string
Comma separated list of partial provider statement names. e.g. Scottish Widows
-
filter[reference] string
Comma separated list of partial provider statement references. e.g. SW#324
-
filter[provider_uuids] string
Comma separated list of exact provider UUIDs. e.g. fb8ca37d-6c5b-4688-bb69-1aacfffb8bea
-
filter[date_from] string
Statement date from in format YYYY-MM-DD e.g. 2022-10-15
-
filter[date_to] string
Statement date from in format YYYY-MM-DD e.g. 2022-12-30
-
filter[amount_from] integer
Total amount of transactions within provider statement to, in pennies e.g. 5000
-
sort string
Field to sort by. Valid fields are [created_at, updated_at, name, reference, date, total_amount]. Negative sign to denote DESC. Defaults to '-created_at'.
-
per_page integer
Number of results to return with pagination (Default 15. Max 500).
curl \
-X GET https://api.plannrcrm.com/api/v1/provider-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}"
{
"data": [
{
"date": "2025-01-17",
"name": "Aviva",
"uuid": "4ff263ac-9380-405f-9c8e-4b2a4af91cdc",
"number": 23,
"origin": "upload",
"filename": "aviva-statement-may.csv",
"provider": {
"name": "AJ Bell",
"slug": "aj-bell",
"uuid": "d58e971f-fd09-4932-b6cc-c81d5b3949c4",
"created_at": "2025-01-17T11:18:32+00:00",
"updated_at": "2025-01-17T11:18:32+00:00"
},
"reference": "SW#8434",
"statement": {
"name": "01/06/2022 - 30/06/2022",
"uuid": "d1591b17-8f8f-41e1-9ef8-fec8160adef7",
"locked": false,
"end_date": "2022-06-01",
"locked_at": "2025-01-17T11:18:32+00:00",
"locked_by": "App\\Http\\Resources\\AccountResource",
"created_at": "2025-01-17T11:18:32+00:00",
"start_date": "2022-06-30",
"updated_at": "2025-01-17T11:18:32+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": "2025-01-17T11:18:32+00:00",
"updated_at": "2025-01-17T11:18:32+00:00",
"total_amount": {
"amount": "345895",
"currency": "GBP",
"formatted": "£3,458.95"
},
"statement_transactions": [
{
"date": "2025-01-17",
"firm": "App\\Http\\Resources\\FirmResource",
"uuid": "6e4602f3-11e9-4797-bc48-88b87d843b7b",
"reason": "Reason",
"account": "App\\Http\\Resources\\AccountResource",
"category": "initial_fee",
"metadata": {
"client_name": "Gareth Thompson"
},
"provider": "Aviva",
"statement": "App\\Http\\Resources\\StatementResource",
"created_at": "2025-01-17T11:18:32+00:00",
"net_amount": {
"amount": {
"example": "4000",
"description": "Money amount at their lowest denominator (for example: pennies)"
},
"currency": {
"example": "GBP",
"description": "Currency of the money"
},
"formatted": {
"example": "£40.00",
"description": "Money amount formatted with currency"
}
},
"updated_at": "2025-01-17T11:18:32+00:00",
"client_name": "Gareth Thompson",
"expectation": "App\\Http\\Resources\\ExpectationResource",
"scheme_name": "Scheme name",
"adviser_name": "Adviser name",
"gross_amount": {
"amount": {
"example": "4000",
"description": "Money amount at their lowest denominator (for example: pennies)"
},
"currency": {
"example": "GBP",
"description": "Currency of the money"
},
"formatted": {
"example": "£40.00",
"description": "Money amount formatted with currency"
}
},
"agency_number": "Agency number",
"policy_number": "AVIVA_00001",
"scheme_number": "Scheme number",
"payment_origin": "provider",
"customer_number": "Customer number",
"bank_transactions": "App\\Http\\Resources\\BankTransactionResource",
"product_reference": "Product reference",
"provider_statement": "App\\Http\\Resources\\ProviderStatementResource",
"policy_market_value": "Policy market value",
"sender_id_sib_number": "Sender id sib number",
"transaction_reference": "3KtGAWrytA"
}
],
"statement_transactions_count": 6,
"reconciled_expectations_amount": {
"amount": "12849",
"currency": "GBP",
"formatted": "£128.49"
},
"reconciled_expectations_percentage": 95.68,
"is_fully_reconciled_to_expectations": true,
"reconciled_bank_transactions_amount": {
"amount": "22985",
"currency": "GBP",
"formatted": "£229.85"
},
"reconciled_bank_transactions_percentage": 95.68
}
]
}