Skip to main content
GET
/
v1
/
users
/
{userId}
/
tax-forms
/
{formId}
/
download
Tax Form Download
curl --request GET \
  --url https://api.cadanapay.com/v1/users/{userId}/tax-forms/{formId}/download \
  --header 'Authorization: Bearer <token>'
{
  "fileUrl": "https://cadana.com/file/123",
  "expiresAt": 1690339130
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

X-MultiTenantKey
string

Required when using a Platform API token. The tenant key identifying which business to operate on.

Path Parameters

userId
string<uuid>
required

The unique identifier for the user

formId
string
required

The unique identifier for the form

Response

get user tax form file link response

fileUrl
string

Link to the file

Example:

"https://cadana.com/file/123"

expiresAt
number

Link expiration time

Example:

1690339130