GET /contents/[event_id]
Returns a list of digital content associated with the specified event.
Tip: Digital content is only available if the event has an active subscription to the partner Content Management and Sharing module.
A digital content item has an associated QR code which can be scanned by Visit software applications when at a live event. Every partner has an associated partner (profile) content item generated automatically, which may be updated via the API, but not created or deleted. Additionally a partner may have any number of product content items within their account. Product content items may be fully managed via the API, so may be created, updated and deleted. A product content item would typically represent a product or service which an exhibiting company can offer.
To generate a QR code compatible with Visit systems, the required underlying URL is in the format.
https://discover.visitcloud.com/c/[content_id]
Mandatory Parameters
Sample response
[
{
"category": "partner",
"expoID": "3i3zzu0omh9gh",
"id": "3ntq24vr6lh79",
"name": "Exhibitor 2",
"partnerID": "1qofropxa7qmo",
"revision": 9730003209,
"source": "internal",
"summary": null
},
{
"category": "partner",
"expoID": "3i3zzu0omh9gh",
"id": "3qp8rcaihpmqn",
"name": "Exhibtor 1",
"partnerID": "339qdsa0kc41w",
"revision": 9730050111,
"source": "internal",
"summary": "This is the summary"
},
{
"category": "product",
"expoID": "3i3zzu0omh9gh",
"id": "1xaic4z2uid46",
"name": "my product",
"partnerID": "339qdsa0kc41w",
"revision": 9730429724,
"source": "internal",
"summary": ""
}
]
Field List
field | type | description |
---|---|---|
category | string enum | type of digital content. Options are partner or product. |
expoID | string | Visit alphanumeric ID of the associated event |
id | string | Visit alphanumeric ID of the content item |
name | string (<100 chars) | content item name |
partnerID | string | Visit alphanumeric ID of associated partner |
revision | long | incremental number for change tracking |
source | string enum | indicates if digital content is internal or link |
summary | string (<100 chars) | summary of digital content |
Additional properties are exposed when requesting an individual content item.