Get document by ID
GET/document/:document_id
The Get Document API enables you to retrieve details about a specific document.
Request
Path Parameters
document_id stringrequired
objectId of contact
Responses
- 200
- 404
- 405
successful operation
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
objectId string
Title string
Note string
Folder string
File string
Owner string
Signers
object[]
Name string
createdAt date
updatedAt date
{
"objectId": "FGik23bhUJ",
"Title": "sample doc",
"Note": "please sign document",
"Folder": "OpenSign™ Drive",
"File": "https://exampleurl.com",
"Owner": "joe bee",
"Signers": [
{
"Name": "joe"
}
],
"createdAt": "2023-10-07T16:49:56.000Z",
"updatedAt": "2023-10-07T16:49:56.000Z"
}
Document not found!
- application/json
- Schema
- Example (from schema)
Schema
error string
{
"error": "Document not found!"
}
Invalid API Token!
- application/json
- Schema
- Example (from schema)
Schema
error string
{
"error": "Invalid API token!"
}
Loading...