Open Banking
List all Plaid Asset Reports
Returns a paginated list of Plaid Asset Reports related to a customer. The list is sorted by creation date in ascending order, with the oldest data appearing first.
Warning This endpoint is deprecated. The recommended endpoint is Get Open Banking Data.
get/customers/{customer_id}/plaid_assets
Path parameters
customer_idstring uuid required
The Inscribe customer id.
Query parameters
sizeinteger required
Set the number of Plaid Asset Reports to be returned by the request.
cursorstring uuid
Send a cursor to retrieve the next set of Plaid Asset Reports, starting after the cursor. If no cursor is sent, the first set of Plaid Asset Reports will be returned.
Response
Successfully retrieved Plaid Asset Reports.
Example response
{
"data": [
{
"id": "3fc4560f-f6dc-4cdd-a076-182a5e92b70b",
"created_at": "2022-07-14T09:46:10.510Z",
"state": "PROCESSED",
"no_of_bank_accounts": 3
},
{
"id": "18a51c48-b387-43a3-a405-6eb63c13c70a",
"created_at": "2022-08-04T11:56:01.460Z",
"state": "PROCESSED",
"no_of_bank_accounts": 1
},
{
"id": "a28df285-baca-47b2-aae0-e3f085a096d2",
"created_at": "2022-10-15T16:55:32.098Z",
"state": "PROCESSING",
"no_of_bank_accounts": 0
}
],
"pagination": {
"cursor": "a28df285-baca-47b2-aae0-e3f085a096d2"
}
}