Account Endpoints
Get documents
Retrieve a list of documents available for a specific account.
Please note: This endpoint is currently under migration and will be available soon.
GET
/
accounts
/
/
documents
/
{account_id}
Header
Path
curl --request GET \
--url https://sandbox.featherhq.com/accounts//documents/{account_id} \
--header 'x-api-key: <x-api-key>'
{
"documents": [
{
"document_id": "<string>",
"document_name": "<string>",
"document_type": "<string>",
"upload_date": "2023-11-07T05:31:56Z"
}
]
}
Headers
x-api-key
string
requiredAPI Key for authentication
Path Parameters
account_id
string
requiredThe ID of the account for which documents are to be retrieved.
Response
200 - application/json
documents
object[]
curl --request GET \
--url https://sandbox.featherhq.com/accounts//documents/{account_id} \
--header 'x-api-key: <x-api-key>'
{
"documents": [
{
"document_id": "<string>",
"document_name": "<string>",
"document_type": "<string>",
"upload_date": "2023-11-07T05:31:56Z"
}
]
}