The cobrand login service authenticates a cobrand.
Cobrand session in the response includes the cobrand session token (cobSession)
which is used in subsequent API calls like registering or signing in the user.
The idle timeout for a cobrand session is 2 hours and the absolute timeout is 24 hours. This service can be
invoked to create a new cobrand session token.
Note: This endpoint is deprecated for customers using the API Key-based authentication and is applicable only to customers who use the SAML-based authentication.
The content type has to be passed as application/json for the body parameter.
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
Cobrand Login
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
{
"type": "object",
"required": [
"cobrand"
],
"properties": {
"cobrand": {
"type": "object",
"required": [
"cobrandLogin",
"cobrandPassword"
],
"properties": {
"cobrandLogin": {
"type": "string"
},
"cobrandPassword": {
"type": "string"
},
"locale": {
"type": "string",
"description": "The customer's locale that will be considered for the localization functionality.<br><br><b>Endpoints</b>:<ul><li>POST cobrand/login</li></ul>"
}
}
}
}
}Output
- 1
- 2
- 3
- 4
{
"type": "object",
"additionalProperties": true
}