Register User

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.

Parameters

For the Request

Example Request

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"
		  }
		}
	}'

Example Response

{
  "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"
  }
}

Get User

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.