Skip to main content
GET
/
v1
/
partner
/
companies
/
{doolaCompanyId}
/
documents
/
{documentId}
Get a document download URL
curl --request GET \
  --url https://api.test.doola.com/v1/partner/companies/{doolaCompanyId}/documents/{documentId} \
  --header 'Authorization: <api-key>'
{
  "payload": {
    "id": "<string>",
    "companyId": "<string>",
    "name": "Articles-of-Organization.pdf",
    "contentType": "application/pdf",
    "documentType": "ArticlesOfOrganization",
    "lastModified": "2023-11-07T05:31:56Z",
    "createdAt": "2023-11-07T05:31:56Z",
    "downloadUrl": "<string>"
  },
  "error": {}
}

Authorizations

Authorization
string
header
required

Partner API key. Send the raw key as the Authorization header value — e.g. dk_test_… in sandbox or dk_live_… in production. Generate and rotate keys in the doola Partner Portal.

Path Parameters

doolaCompanyId
string
required

doola company ID (KSUID).

documentId
string
required

Document ID returned by the list endpoint.

Response

200 - */*

OK

payload
object

Document metadata plus a short-lived, pre-signed download URL.

error
object