Properties
| Name | Type | Description |
|---|---|---|
| languageISOCode | string | The language in which the provider details are provided. For example, a site supports two languages English and French. English being the primary language, the provider response will be provided in Fr |
| forgetPasswordUrl | string | The forget password URL of the provider site. Endpoints:
|
| PRIORITY | string | Indicates the priority for which the service is invoked. Endpoints:
|
| associatedProviderIds | array | The screen-scraping providers that are associated to the Open Banking provider ID. Applicable containers: All Containers Endpoints:
|
| loginHelp | string | Help text to guide the user to choose the correct provider site. Endpoints:
|
| capability | array | Capability of the site Endpoints:
Note : capability has been deprecated |
| isConsentRequired | boolean | Indicates if a provider site requires consent. Endpoints:
|
| loginUrl | string | The login URL of the provider's site. Endpoints:
|
| isAutoRefreshEnabled | boolean | Indicates if a provider site is auto-refreshed. Endpoints:
|
| logo | string | The logo link of the provider institution. The link will return the logo in the PNG format. Endpoints:
|
| betaContainers | array | This attribute will show the list of containers which are presently under development for the provider site and their link attempt may be unsuccessful Endpoints:
|
| id | integer | Unique identifier for the provider site(e.g., financial institution sites, biller sites, lender sites, etc.). Endpoints:
|
| authParameter | array | AuthParameter appears in the response only in case of token-based aggregation sites. Endpoints:
|
| authType | string | The authentication type enabled at the provider site. Endpoints:
|
| favicon | string | Favicon link of the provider. Endpoints:
|
| accountType | array | AccountType supported by the provider, eg: Brokerage Cash, Current Endpoints:
|
| countryISOCode | string | Country to which the provider belongs. Endpoints:
|
| isAddedByUser | string | Indicates that the site has been added by the user at least once. Endpoints:
|
| primaryLanguageISOCode | string | The primary language of the site. Endpoints:
|
| help | string | Text to guide user through linking an account that belongs to the site Endpoints:
|
| baseUrl | string | The base URL of the provider's site. Endpoints:
|
| name | string | The name of a provider site. Endpoints:
|
| lastModified | string | Determines when the provider information was updated by Yodlee. If the customer caches the data, the cache is recommended to be refreshed based on this field. Endpoints:
|
| dataset | array | Logical grouping of dataset attributes into datasets such as Basic Aggregation Data, Account Profile and Documents Endpoints:
|
| status | string | Determines if the provider is supported for the cobrand (customer), is in the beta stage, etc. Endpoints:
|
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Providers",
"title": "Providers",
"type": "object",
"properties": {
"languageISOCode": {
"type": "string",
"description": "The language in which the provider details are provided. For example, a site supports two languages English and French. English being the primary language, the provider response will be provided in French depending on the user's locale. The language follows the two letter ISO code.<br><br><b>Endpoints</b>:<ul><li>GET providers/{providerId}</li><li>GET providers</li></ul>",
"readOnly": true
},
"forgetPasswordUrl": {
"type": "string",
"description": "The forget password URL of the provider site.<br><br><b>Endpoints</b>:<ul><li>GET providers</li></ul>",
"readOnly": true
},
"PRIORITY": {
"type": "string",
"description": "Indicates the priority for which the service is invoked.<br><br><b>Endpoints</b>:<ul><li>GET providers/{providerId}</li><li>GET providers</li></ul><b>Applicable Values</b><br>",
"readOnly": true,
"enum": [
"POPULAR",
"SUGGESTED",
"COBRAND",
"SEARCH",
"ALL"
]
},
"associatedProviderIds": {
"type": "array",
"description": "The screen-scraping providers that are associated to the Open Banking provider ID.<br><br><b>Applicable containers</b>: All Containers<br><b>Endpoints</b>:<ul><li>GET providers</li><li>GET providers/{providerId}</li></ul>",
"readOnly": true,
"items": {
"type": "integer",
"format": "int64"
}
},
"loginHelp": {
"type": "string",
"description": "Help text to guide the user to choose the correct provider site.<br><br><b>Endpoints</b>:<ul><li>GET providers</li></ul>",
"readOnly": true
},
"capability": {
"type": "array",
"description": "Capability of the site<br><br><b>Endpoints</b>:<ul><li>GET providers/{providerId}</li><li>GET providers</li></ul><br><b>Note : </b> capability has been deprecated",
"readOnly": true,
"items": {
"$ref": "#/components/schemas/Capability"
}
},
"isConsentRequired": {
"type": "boolean",
"description": "Indicates if a provider site requires consent.<br><br><b>Endpoints</b>:<ul><li>GET providers/{providerId}</li><li>GET providers</li></ul>",
"readOnly": true
},
"loginUrl": {
"type": "string",
"description": "The login URL of the provider's site.<br><br><b>Endpoints</b>:<ul><li>GET providers/{providerId}</li><li>GET providers</li></ul>",
"readOnly": true
},
"isAutoRefreshEnabled": {
"type": "boolean",
"description": "Indicates if a provider site is auto-refreshed.<br><br><b>Endpoints</b>:<ul><li>GET providers/{providerId}</li><li>GET providers</li></ul>",
"readOnly": true
},
"logo": {
"type": "string",
"description": "The logo link of the provider institution. The link will return the logo in the PNG format.<br><br><b>Endpoints</b>:<ul><li>GET providers/{providerId}</li><li>GET providers</li></ul>",
"readOnly": true
},
"betaContainers": {
"type": "array",
"description": "This attribute will show the list of containers which are presently under development for the provider site and their link attempt may be unsuccessful<br><br><b>Endpoints</b>:<ul><li>GET providers/{providerId}</li><li>GET providers</li></ul>",
"readOnly": true,
"items": {
"type": "string"
}
},
"id": {
"type": "integer",
"description": "Unique identifier for the provider site(e.g., financial institution sites, biller sites, lender sites, etc.).<br><br><b>Endpoints</b>:<ul><li>GET providers/{providerId}</li><li>GET providers</li></ul>",
"format": "int64",
"readOnly": true
},
"authParameter": {
"type": "array",
"description": "AuthParameter appears in the response only in case of token-based aggregation sites.<br><br><b>Endpoints</b>:<ul><li>GET providers/{providerId}</li><li>GET providers</li></ul>",
"readOnly": true,
"items": {
"type": "string",
"enum": [
"authorizationCode",
"idToken",
"authResponse",
"state"
]
}
},
"authType": {
"type": "string",
"description": "The authentication type enabled at the provider site. <br><br><b>Endpoints</b>:<ul><li>GET providers/{providerId}</li><li>GET providers</li></ul><b>Applicable Values</b><br>",
"readOnly": true,
"enum": [
"OAUTH",
"CREDENTIALS",
"MFA_CREDENTIALS"
]
},
"favicon": {
"type": "string",
"description": "Favicon link of the provider.<br><br><b>Endpoints</b>:<ul><li>GET providers/{providerId}</li><li>GET providers</li></ul>",
"readOnly": true
},
"accountType": {
"type": "array",
"description": "AccountType supported by the provider, eg: Brokerage Cash, Current<br><br><b>Endpoints</b>:<ul><li>GET providers/{providerId}</li><li>GET providers</li></ul>",
"readOnly": true,
"items": {
"type": "string",
"enum": [
"CURRENT",
"BROKERAGE_CASH"
]
}
},
"countryISOCode": {
"type": "string",
"description": "Country to which the provider belongs.<br><br><b>Endpoints</b>:<ul><li>GET providers/{providerId}</li><li>GET providers</li></ul>",
"readOnly": true
},
"isAddedByUser": {
"type": "string",
"description": "Indicates that the site has been added by the user at least once.<br><br><b>Endpoints</b>:<ul><li>GET providers/{providerId}</li><li>GET providers</li></ul>",
"readOnly": true
},
"primaryLanguageISOCode": {
"type": "string",
"description": "The primary language of the site.<br><br><b>Endpoints</b>:<ul><li>GET providers/{providerId}</li><li>GET providers</li></ul>",
"readOnly": true
},
"help": {
"type": "string",
"description": "Text to guide user through linking an account that belongs to the site<br><br><b>Endpoints</b>:<ul><li>GET providers/{providerId}</li><li>GET providers</li></ul>",
"readOnly": true
},
"baseUrl": {
"type": "string",
"description": "The base URL of the provider's site.<br><br><b>Endpoints</b>:<ul><li>GET providers/{providerId}</li><li>GET providers</li></ul>",
"readOnly": true
},
"name": {
"type": "string",
"description": "The name of a provider site.<br><br><b>Endpoints</b>:<ul><li>GET providers/{providerId}</li><li>GET providers</li></ul>",
"readOnly": true
},
"lastModified": {
"type": "string",
"description": "Determines when the provider information was updated by Yodlee. If the customer caches the data, the cache is recommended to be refreshed based on this field.<br><br><b>Endpoints</b>:<ul><li>GET providers/{providerId}</li><li>GET providers</li></ul>",
"readOnly": true
},
"dataset": {
"type": "array",
"description": "Logical grouping of dataset attributes into datasets such as Basic Aggregation Data, Account Profile and Documents<br><br><b>Endpoints</b>:<ul><li>GET providers/{providerId}</li><li>GET providers</li></ul>",
"readOnly": true,
"items": {
"$ref": "#/components/schemas/ProvidersDataset"
}
},
"status": {
"type": "string",
"description": "Determines if the provider is supported for the cobrand (customer), is in the beta stage, etc. <br><br><b>Endpoints</b>:<ul><li>GET providers/{providerId}</li><li>GET providers</li></ul>",
"readOnly": true,
"enum": [
"Supported",
"Beta",
"Unsupported"
]
}
}
}