action yodlee_cobrand_login { label: "Cobrand Login" description: "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.
" provider: yodlee method: POST path: "/cobrand/login" encoding: json input: { 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.

Endpoints:" } } } } } output: { type: "object" additionalProperties: true } }