Get Validation Submission Documents
GET/v1/validation-submissions/:id/documents
Get Validation Submission Documents
Request​
Path Parameters
id stringrequired
Id of the Validation Submission.
Responses​
- 200
- 401
- 403
- 404
Successfully retrieved list of Validation Submissions Documents
- application/json
- Schema
- Example (from schema)
Schema
data object[]
object string
Example:
validation_submission_document
{
"data": [
{
"id": "validationsubmissiondocument_xxxxxxxxxxxx",
"validationSubmissionId": "validationsubmission_xxxxxxxxxxxx",
"createdAt": "2022-02-02T17:46:54.000Z",
"url": "https://s3-eu-west-1.amazonaws.com/assets.poweredbypercent.com/document.pdf",
"type": "validation_request",
"validationInviteId": "validationinvite_xxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
}
],
"object": "validation_submission_document"
}
Unauthorized
Forbidden (scope)
- application/json
- Schema
- Example (from schema)
Schema
error
object
code string
Example:
forbidden
title string
Example:
Forbidden
message string
Example:
Access is denied due to missing scope permissions
{
"error": {
"code": "forbidden",
"title": "Forbidden",
"message": "Access is denied due to missing scope permissions"
}
}
The specified resource was not found
- application/json
- Schema
- Example (from schema)
Schema
error
object
code string
Example:
not_found
title string
Example:
Resource not found
message string
Example:
This endpoint is unavailable or can not be found
{
"error": {
"code": "not_found",
"title": "Resource not found",
"message": "This endpoint is unavailable or can not be found"
}
}
Loading...