v1

latestOpenAPI 3.1.02026-07-26549156879.0 KB
Documents > DownloadUrl

Bulk creates a Download url

This endpoint generate temporal urls for a list of documents. The urls let you download the documents.

post/api/2026-07-01/resources/documents/download_urls/bulk_create

Request body

idsstring[]

list of document identifiers.

Example request

{
  "ids": [
    "1",
    "2",
    "3"
  ]
}

Response

OK

idstring required

document identifier.

urlstring required

temporal document url.

Example response

[
  {
    "id": "1",
    "url": "http://example.com/document.pdf"
  }
]