POST
/
jobs
/
documents
/
list
List documents
curl --request POST \
  --url https://sandbox.deck.co/api/v1/jobs/documents/list \
  --header 'Content-Type: application/json' \
  --header 'x-deck-client-id: <api-key>' \
  --header 'x-deck-secret: <api-key>' \
  --data '{
  "access_token": "<string>"
}'
{
  "documents": [
    {
      "document_id": "<string>",
      "file_type": "<string>",
      "metadata": {},
      "file_name": "<string>",
      "file_size": 123,
      "fetch_date": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

x-deck-client-id
string
header
required

Enter your client id

x-deck-secret
string
header
required

Enter your secret

Query Parameters

job_guid
string

Body

Response

200
application/json

OK

The response is of type object.