action yodlee_get_provider { label: "Get Provider Details" description: "The get provider detail service is used to get detailed information including the login form for a provider.
The response is a provider object that includes information such as name of the provider,
provider's base URL, a list of containers supported by the provider, the login form details of the provider, etc.
Only enabled datasets, attributes and containers gets returned in the response.

Note:
  • This service supports the localization feature and accepts locale as a header parameter.
  • The capability has been deprecated in the response." provider: yodlee method: GET path: "/providers/{providerId}" encoding: json input: { type: "object" properties: { providerId: { type: "integer" format: "int64" } } required: ["providerId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }