GET
/
getDocumentDetails
Retrieve a single document's details
curl --request GET \
  --url https://api.useinkless.com/getDocumentDetails \
  --header 'x-api-key: <api-key>'
{
  "message": "<string>",
  "document": {
    "id": "<string>",
    "name": "<string>",
    "status": "<string>",
    "finalUrl": "<string>",
    "recipients": [
      {
        "name": "<string>",
        "email": "jsmith@example.com"
      }
    ]
  }
}

Authorizations

x-api-key
string
header
required

Query Parameters

pdf_id
string
required

The unique identifier of the document to retrieve.

Response

200
application/json

Document details retrieved successfully.

The response is of type object.