Endpoint: POST
/user/register
The register user service is used to register a user in Yodlee.
The loginName cannot include spaces and must be between 3 and 150 characters.
locale passed must be one of the supported locales for the customer.
Currency provided in the input will be respected in the derived services and the amount fields in the response will be provided in the preferred currency.
userParam is accepted as a body parameter.
curl -X POST /user/register \\
-H 'Content-Type: application/json' \\
-H "Authorization: Bearer {access_token}" \\
-d '{
{
"user": {
"preferences": {
"dateFormat": "string",
"timeZone": "string",
"currency": "AUD",
"locale": "en_US"
},
"address": {
"zip": "string",
"country": "string",
"address3": "string",
"address2": "string",
"city": "string",
"address1": "string",
"state": "string"
},
"loginName": "string",
"name": {
"middle": "string",
"last": "string",
"fullName": "string",
"first": "string"
},
"email": "string",
"segmentName": "string"
}
}
}'
{
"user": {
"preferences": {
"dateFormat": "string",
"timeZone": "string",
"currency": "AUD",
"locale": "en_US"
},
"session": {
"userSession": "string"
},
"loginName": "string",
"name": {
"middle": "string",
"last": "string",
"fullName": "string",
"first": "string"
},
"id": 0,
"roleType": "INDIVIDUAL"
}
}
Endpoint: GET
/user
The get user details service is used to get the user profile information and the application preferences set at the time of user registration.