Summary
Gets a Project's thumbnail
Description
Gets a Project's thumbnail. Returns data as a base64 encoded string of binary data.
Route
GET /automation-studio/projects/:projectId/thumbnail
Roles
admin
apiread
Parameters
DetailsExampleSchema
Name |
Type |
Required |
Description |
projectId |
string |
yes |
Project identifier |
Copied to Clipboard
{
"type": "object",
"properties": {},
"required": [],
"additionalProperties": false
}
Return
DetailsExampleSchema
Name |
Type |
Description |
response |
object |
API response body |
Copied to Clipboard
{
"message": "ut veniam commodo et laboris",
"data": {
"image": "aliquip dolore non laboris",
"backgroundColor": "voluptate non Ut cillum"
}
}
Copied to Clipboard
{
"title": "response",
"type": "object",
"properties": {
"message": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"image": {
"description": "Base64 encoded binary contents of the image file",
"type": "string"
},
"backgroundColor": {
"description": "Hex value of thumbnail background color",
"type": "string"
},
"metadata": {
"type": "object"
}
}
}
}
}