Retrieve a chart thumbnail
Chart thumbnails are static PNG representations of a seating chart. This means that you cannot interact with the objects on the chart. You typically use them when showing a list of charts to a user, e.g. when integrating seats.io into your backoffice system.
These thumbnails are not a completely accurate representation of the seating chart. To get a high-detail static representation of a single chart, use print mode.
To use the thumbnail in an <img>
tag, use the publicly accessible publishedVersionThumbnailUrl
(or draftVersionThumbnailUrl
) that is returned by the list charts and retrieve chart calls instead of the call documented below.
Retrieve the published version thumbnail
- Text
- PHP
- C#
- Java
- Python
- Ruby
- Javascript
- Go
GET https://api-{region}.seatsio.net/charts/{chartKey}/version/published/thumbnail
$seatsioClient->charts->retrievePublishedVersionThumbnail("4250fffc-e41f-c7cb-986a-2c5e728b8c28");
await Client.Charts.RetrievePublishedVersionThumbnailAsync("4250fffc-e41f-c7cb-986a-2c5e728b8c28");
client.charts.retrievePublishedVersionThumbnail("4250fffc-e41f-c7cb-986a-2c5e728b8c28");
client.charts.retrieve_published_version_thumbnail("749b9650-24fb-11e7-93ae-92361f002671")
client.charts.retrieve_published_version_thumbnail("749b9650-24fb-11e7-93ae-92361f002671")
await client.charts.retrievePublishedVersionThumbnail('chartKey');
file, err := client.Charts.RetrievePublishedVersionThumbnail("chartKey")
This requires authentication by secret key. For a publicly available URL, use the publishedVersionThumbnailUrl that is returned by list charts and retrieve chart .
curl https://api-{region}.seatsio.net/charts/4250fffc-e41f-c7cb-986a-2c5e728b8c28/version/published/thumbnail \
-u aSecretKey:
Example response