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.
Note:
643 matches
65 actions
Yodlee Core
65 actions
- Add Manual AccountPOSTv1.0.0
- Cobrand LoginPOSTv1.0.0
- Cobrand LogoutPOSTv1.0.0
- Create CategoryPOSTv1.0.0
- Create or Run Transaction Categorization RulePOSTv1.0.0
- Delete AccountDELETEv1.0.0
- Delete API KeyDELETEv1.0.0
- Delete CategoryDELETEv1.0.0
- Delete DocumentDELETEv1.0.0
- Delete Notification SubscriptionDELETEv1.0.0
- Delete Provider AccountDELETEv1.0.0
- Delete SubscriptionDELETEv1.0.0
- Delete Transaction Categorization RuleDELETEv1.0.0
- Delete UserDELETEv1.0.0
- Evaluate AddressPOSTv1.0.0
- Generate API KeyPOSTv1.0.0
- Get Account DetailsGETv1.0.0
- Get AccountsGETv1.0.0
- Get API KeysGETv1.0.0
- Get Asset Classification ListGETv1.0.0
- Get DocumentsGETv1.0.0
- Get EventsGETv1.0.0
- Get Historical BalancesGETv1.0.0
- Get Holding SummaryGETv1.0.0
- Get Holding Type ListGETv1.0.0
- Get HoldingsGETv1.0.0
- Get Networth SummaryGETv1.0.0
- Get Provider Account DetailsGETv1.0.0
- Get Provider AccountsGETv1.0.0
- Get Provider DetailsGETv1.0.0
- Get ProvidersGETv1.0.0
- Get Providers CountGETv1.0.0
- Get Public KeyGETv1.0.0
- Get Public KeyGETv1.0.0
- Get Security DetailsGETv1.0.0
- Get StatementsGETv1.0.0
- Get Subscribed EventsGETv1.0.0
- Get Subscribed Notification EventsGETv1.0.0
- Get Transaction Categorization RulesGETv1.0.0
- Get Transaction Category ListGETv1.0.0
- Get Transaction SummaryGETv1.0.0
- Get TransactionsGETv1.0.0
- Get Transactions CountGETv1.0.0
- Get User DetailsGETv1.0.0
- Get User Profile DetailsGETv1.0.0
- Get userDataGETv1.0.0
- Get Verification StatusGETv1.0.0
- Initiaite Matching Service and Challenge DepositPOSTv1.0.0
- Register UserPOSTv1.0.0
- Run Transaction Categorization RulePOSTv1.0.0
- Saml LoginPOSTv1.0.0
- Subscribe EventPOSTv1.0.0
- Subscribe For Notification EventPOSTv1.0.0
- Update AccountPUTv1.0.0
- Update AccountPUTv1.0.0
- Update CategoryPUTv1.0.0
- Update Notification SubscriptionPUTv1.0.0
- Update PreferencesPUTv1.0.0
- Update SubscriptionPUTv1.0.0
- Update TransactionPUTv1.0.0
- Update Transaction Categorization RulePUTv1.0.0
- Update User DetailsPUTv1.0.0
- User LogoutPOSTv1.0.0
- Verify Accounts Using TransactionsPOSTv1.0.0
- Verify Challenge DepositPUTv1.0.0
Finance/Yodlee Core
Register User
v1.0.0Input
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
- 56
- 57
- 58
- 59
- 60
- 61
- 62
- 63
- 64
- 65
- 66
- 67
- 68
- 69
- 70
- 71
- 72
- 73
- 74
- 75
- 76
- 77
- 78
- 79
- 80
- 81
- 82
- 83
- 84
- 85
- 86
- 87
- 88
- 89
- 90
- 91
- 92
- 93
- 94
- 95
- 96
- 97
- 98
- 99
- 100
- 101
- 102
- 103
- 104
- 105
- 106
- 107
- 108
- 109
- 110
- 111
- 112
- 113
- 114
{
"type": "object",
"required": [
"user"
],
"properties": {
"user": {
"type": "object",
"required": [
"loginName"
],
"properties": {
"address": {
"type": "object",
"properties": {
"address1": {
"type": "string"
},
"address2": {
"type": "string"
},
"address3": {
"type": "string"
},
"city": {
"type": "string"
},
"country": {
"type": "string"
},
"state": {
"type": "string"
},
"zip": {
"type": "string"
}
}
},
"email": {
"type": "string"
},
"loginName": {
"type": "string"
},
"name": {
"type": "object",
"properties": {
"first": {
"type": "string"
},
"fullName": {
"type": "string"
},
"last": {
"type": "string"
},
"middle": {
"type": "string"
}
}
},
"preferences": {
"type": "object",
"properties": {
"currency": {
"type": "string",
"description": "The currency of the user. This currency will be respected while providing the response for derived API services.<br><b>Applicable Values</b><br>",
"enum": [
"AUD",
"BRL",
"CAD",
"EUR",
"GBP",
"HKD",
"IDR",
"INR",
"JPY",
"NZD",
"SGD",
"USD",
"ZAR",
"CNY",
"VND",
"MYR",
"CHF"
]
},
"dateFormat": {
"type": "string",
"description": "The dateformat of the user.This attribute is just a place holder and has no impact on any other API services."
},
"locale": {
"type": "string",
"description": "The locale of the user. This locale will be considered for localization features like providing the provider information in the supported locale or providing category names in the transaction related services.<br><b>Applicable Values</b><br>",
"enum": [
"en_US",
"en_ES",
"fr_CA",
"zh_CN"
]
},
"timeZone": {
"type": "string",
"description": "The timezone of the user. This attribute is just a place holder and has no impact on any other API services."
}
}
},
"segmentName": {
"type": "string"
}
}
}
}
}Output
- 1
- 2
- 3
- 4
{
"type": "object",
"additionalProperties": true
}