Equipment Documents
The following endpoints allow you to manage documents related to your equipments, including uploading, updating, and deleting documents.
Retrieve a list of documents for the specified equipment.
Generate a JWT when you log in. Use it in your following requests in the header as x-access-token: your-token-here
The unique identifier of the equipment.
The number of items to skip before starting to collect the result set
0The number of items to return
10A paginated list of documents for the equipment
Missing parameters or invalid parameters
Unable to authenticate the token
Resource not found
Upload a document to be associated with the specified equipment.
Generate a JWT when you log in. Use it in your following requests in the header as x-access-token: your-token-here
The unique identifier of the equipment.
The name of the document.
The document file to be uploaded. The document must be one of the following types PDF, JPEG, PNG, GIF, TIFF, CSV, Excel, or Word documents. File size should not exceed 10MB (10,485,760 bytes).
Indicates whether the document can be shared along with the related equipment. If true, the document will be shared automatically when the equipment is shared; if false, the document remains private.
falseIndicates whether the document can be publicly accessible.
falseDate when the document becomes invalid, formatted as 'YYYY-MM-DD' in UTC.
/^\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12]\d|3[01])$/Document successfully uploaded
Missing parameters or invalid parameters
Unable to authenticate the token
Insufficient permissions to access the resource
Resource not found
Conflict with existing document metadata (e.g., duplicate name)
Payload Too Large. File should not exceeds 10MB
Unsupported Media Type
Deletes a specific document associated with the specified equipment.
Generate a JWT when you log in. Use it in your following requests in the header as x-access-token: your-token-here
The unique identifier of the equipment.
The unique identifier of the document.
Document successfully deleted
Unable to authenticate the token
Insufficient permissions to access the resource
Resource not found
No content
Update the metadata (e.g., name, isPublic) of a specific document associated with the specified equipment.
Generate a JWT when you log in. Use it in your following requests in the header as x-access-token: your-token-here
The unique identifier of the equipment.
The unique identifier of the document.
The name of the document.
Date when the document becomes invalid, formatted as 'YYYY-MM-DD' in UTC.
/^\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12]\d|3[01])$/Document metadata successfully updated
Missing parameters or invalid parameters
Unable to authenticate the token
Insufficient permissions to access the resource
Resource not found
Conflict with existing document metadata (e.g., duplicate name)
Allows the user to download a specific document associated with the specified equipment.
Generate a JWT when you log in. Use it in your following requests in the header as x-access-token: your-token-here
The unique identifier of the equipment.
The unique identifier of the document.
Document successfully downloaded
Unable to authenticate the token
Resource not found
Last updated
Was this helpful?