GET
/
account
/
{id}
/
tax_document
curl --request GET \
  --url https://api.treasuryprime.com/account/{id}/tax_document \
  --header 'Authorization: Basic <encoded-value>'
{
  "data": [
    {
      "id": "<string>",
      "type": "<string>",
      "year": "<string>"
    }
  ],
  "description": "<any>"
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Path Parameters

id
string
required

Account ID

Response

200 - application/json
A list of account.tax_document.index elements

The response is of type any.