Get results for board export job
GET/v2/orgs/:org_id/boards/export/jobs/:job_id/results
Retrieves the result of the board export job. The response provides more information about the board export job, such as the S3 link to the files created.
Required scope
boards:exportRate limiting
Level 4Enterprise only
This API is available only for Enterprise plan users. You can only use this endpoint if you have the role of a Company Admin and eDiscovery is enabled in the Settings. You can request temporary access to Enterprise APIs using this form.
Request
Path Parameters
Unique identifier of the organization.
Unique identifier of the job.
Responses
- 200
- 400
- 401
- 403
- 404
- 429
Board export job result
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
Unique identifier of the board export job.
results
object[]
Board export task results.
Unique identifier of the board.
Contains the description of the error that occurred during a board export task.
URL of the S3 bucket that contains the exported files.
Indicates the status of the individual board export task.
Possible values:
SUCCESS
: the board export task was completed successfully and the results are available.
ERROR
: the board export task encountered an error and failed to complete. The errorMessage
field provides more information on the error.
{
"jobId": "92343229-c532-446d-b8cb-2f155bedb807",
"results": [
{
"boardId": "o9J_kzlUDmo=",
"errorMessage": "string",
"exportLink": "string",
"status": "CREATED"
}
]
}
Malformed request
- application/json
- Schema
- Example (from schema)
Schema
Default value: 400
HTTP status code.
Default value: invalidParameters
Description of the status code.
Explanation for the error
Default value: error
Type of the object returned.
{
"status": 400,
"code": "invalidParameters",
"message": "string",
"type": "error"
}
Invalid authentication credentials
- application/json
- Schema
- Example (from schema)
Schema
Default value: 401
HTTP status code.
Default value: tokenNotProvided
Description of the status code.
Explanation for the error
Default value: error
Type of the object returned.
{
"status": 401,
"code": "tokenNotProvided",
"message": "string",
"type": "error"
}
Invalid access
- application/json
- Schema
- Example (from schema)
Schema
Default value: 403
HTTP status code.
Default value: forbiddenAccess
Description of the status code.
Explanation for the error
Default value: error
Type of the object returned.
{
"status": 403,
"code": "forbiddenAccess",
"message": "string",
"type": "error"
}
Invalid access
- application/json
- Schema
- Example (from schema)
Schema
Default value: 404
HTTP status code.
Default value: notFound
Description of the status code.
Explanation for the error
Default value: error
Type of the object returned.
{
"status": 404,
"code": "notFound",
"message": "string",
"type": "error"
}
Too many requests
- application/json
- Schema
- Example (from schema)
Schema
Default value: 429
HTTP status code.
Default value: tooManyRequests
Description of the status code.
Explanation for the error
Default value: error
Type of the object returned.
{
"status": 429,
"code": "tooManyRequests",
"message": "string",
"type": "error"
}