Endpoint: POST
/accounts
The add account service is used to add manual accounts. The response of add account service includes the account name , account number and Yodlee generated account id. All manual accounts added will be included as part of networth calculation by default. Add manual account support is available for bank, card, investment, insurance and loan container only.
curl -X POST /accounts \\
-H 'Content-Type: application/json' \\
-H "Authorization: Bearer {access_token}" \\
-d '{
"account": {
"includeInNetWorth": "string",
"address": {
"zip": "string",
"country": "string",
"address3": "string",
"address2": "string",
"city": "string",
"sourceType": "string",
"address1": "string",
"street": "string",
"state": "string",
"type": "HOME"
},
"accountName": "string",
"accountType": "string",
"dueDate": "string",
"memo": "string",
"homeValue": {
"amount": 0,
"currency": "AUD"
},
"accountNumber": "string",
"frequency": "DAILY",
"amountDue": {
"amount": 0,
"currency": "AUD"
},
"balance": {
"amount": 0,
"currency": "AUD"
},
"nickname": "string",
"valuationType": "SYSTEM"
}
}'
{
"account": [
{
"accountName": "string",
"id": 0,
"accountNumber": "string"
}
]
}
Endpoint: GET
/accounts
The get accounts service provides information about accounts added by the user.
By default, this service returns information for active and to be closed accounts.
If requestId is provided, the accounts that are updated in the context of the requestId will be provided in the response.
Note: