Get Documents

Endpoint: GET /documents

The get documents service allows customers to search or retrieve metadata related to documents.

The API returns the document as per the input parameters passed. If no date range is provided then all downloaded documents will be retrieved. Details of deleted documents or documents associated to closed providerAccount will not be returned.

This API is a premium service which requires subscription in advance to use. Please contact Yodlee Client Services for more information.

Parameters

For the Request

Example Request

curl -X GET /documents \\
	-H 'Content-Type: application/json' \\
	-H "Authorization: Bearer {access_token}" 

Example Response

{
  "document": [
    {
      "accountID": 0,
      "lastUpdated": "string",
      "formType": "string",
      "docType": "STMT",
      "name": "string",
      "id": "string",
      "source": "string",
      "status": "string"
    }
  ]
}

Download a Document

Endpoint: GET /documents/:documentId

The get document details service allows consumers to download a document. The document is provided in base64.

This API is a premium service which requires subscription in advance to use. Please contact Yodlee Client Services for more information.

Parameters