Last updated 2 years ago
Was this helpful?
GET /aggregators/my-accounts HTTP/1.1 Host: Authorization: Bearer JWT Accept: */*
Successful Operation.
{ "statusCode": 200, "data": { "accounts": [ { "baasAccountId": "myId", "baasStatus": "active", "accountId": "myId", "availableBalance": "100", "currency": "USD", "lastFourDigits": "0023", "name": "Savings Account", "type": "depository", "subType": "savings", "category": "connected", "deletedAt": null } ] } }
{"statusCode":200}
DELETE /aggregators/my-accounts/{accountId} HTTP/1.1 Host: Authorization: Bearer JWT Accept: */*
{ "statusCode": 200 }
DELETE /aggregators/unlink-banking-connection HTTP/1.1 Host: Authorization: Bearer JWT Accept: */*
POST /aggregators/token-link HTTP/1.1 Host: Authorization: Bearer JWT Accept: */*
{ "statusCode": 201, "data": { "linkToken": "myUrl" } }
true
{"statusCode":201}
POST /aggregators/banking-connection HTTP/1.1 Host: Authorization: Bearer JWT Content-Type: application/json Accept: */* Content-Length: 29 { "thirdPartyConnection": true }
{ "statusCode": 201 }
MyAccountId
POST /aggregators/banking-account-connection HTTP/1.1 Host: Authorization: Bearer JWT Content-Type: application/json Accept: */* Content-Length: 27 { "accountId": "MyAccountId" }