GET
/
v2
/
document-exports
curl --request GET \
  --url https://api.usecloudpress.com/v2/document-exports \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "sourceConnection": {
        "id": 123,
        "name": "<string>"
      },
      "sourceDocumentTitle": "<string>",
      "sourceDocumentReference": "<string>",
      "sourceDocumentVersion": "<string>",
      "sourceDocumentKind": "<string>",
      "destinationConnection": {
        "id": 123,
        "name": "<string>"
      },
      "destinationReference": "<string>",
      "exportedAt": "2023-11-07T05:31:56Z"
    }
  ],
  "pagination": {
    "pageCount": 123,
    "pageNo": 123,
    "pageSize": 123,
    "totalRecordCount": 123
  }
}

Authorizations

Authorization
string
headerrequired

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

Query Parameters

pageNo
integer | null

The page of results you would like to return.

pageSize
integer | null

The number of items to return per page. By default, 50 items will be returned.

Response

200 - application/json
items
object[]
pagination
object