GET
/
suppliers
/
{id}
/
supplier_documents
curl --request GET \
  --url https://api.zivio.net/api/v3/suppliers/{id}/supplier_documents \
  --header 'X-API-Key: <api-key>' \
  --header 'zivio-tenant-id: <api-key>'
[
  {
    "id": "77",
    "document_type_id": "15",
    "document_type_name": "Certification of Insurance",
    "from_date": "2023-11-07T05:31:56Z",
    "to_date": "2023-11-07T05:31:56Z",
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z",
    "name": "Certification of Insurance 2023",
    "status": "validated",
    "esignature_status": "out_for_signature"
  }
]

Authorizations

X-API-Key
string
header
required
zivio-tenant-id
string
header
required

Path Parameters

id
string
required

Query Parameters

q
string

Query string. search in first_name, last_name and email

created
string

Date range [2020-01-01+TO+2020-01-30] to search based on created timestamp for object.

updated
string

Date range [2020-01-01+TO+2020-01-30] to search based on updated timestamp for object.

sort
string

Results are sorted by created desc as default. Ordering may be specified, available options are ['created', 'updated'], which can be combined in a comma separated list, e.g. updated:desc,created:asc

limit
integer

Number of results returned per request

page
integer

Paginate results when number of results exceeds limit

Response

200
*/*
ok
id
integer
Example:

"77"

document_type_id
integer
Example:

"15"

document_type_name
string
Example:

"Certification of Insurance"

from_date
string
to_date
string
created_at
string
updated_at
string
name
string
Example:

"Certification of Insurance 2023"

status
string
Example:

"validated"

esignature_status
string
Example:

"out_for_signature"