GET
/
getAllDocuments
Retrieve all documents
curl --request GET \
  --url https://api.useinkless.com/getAllDocuments \
  --header 'x-api-key: <api-key>'
{
  "message": "<string>",
  "documents": [
    {
      "id": "<string>",
      "name": "<string>",
      "status": "<string>",
      "publicUrl": "<string>",
      "recipients": [
        {
          "name": "<string>",
          "email": "jsmith@example.com"
        }
      ]
    }
  ]
}

Authorizations

x-api-key
string
header
required

Response

200
application/json

Successfully retrieved all documents for the user.

The response is of type object.