Introduction
Authentication
Authentication Server URL: https://tradeshow.perenso.net/auth/oauth/token
OAuth 2.0 Client Credentials
You will need to specify the following information in the POST request:
1.
grant_type=client_credentials
1.
100214
means you are requesting access to the REST API. It goes in the body and is combined with other data using an ampersand (&): scope=100214
1.
client_id=SHOW_ID
1.
client_secret=API_SECRET
Example Authentication Request
Working with API Resources
Accessing Specific Records
id
field. This identifier can be used to access specific resources directly.For example, if you receive a list of attendees with the following structure:
[
{
"id": "a123456",
"firstName": "John",
"lastName": "Doe",
"email": "john.doe@example.com"
},
{
"id": "b789012",
"firstName": "Jane",
"lastName": "Smith",
"email": "jane.smith@example.com"
}
]
id
in the endpoint path:GET /attendee/a123456
Retrieving recently modified items
modifiedAfter
parameter to only retrieve items that have changed since the specified date:GET /attendee?modifiedAfter=2025-01-31
modifiedDate
field will be included in the response and items will be sorted from most recently modified to least recently modified:[
{
"id": "a123456",
"modifiedDate": "2025-05-07T12:25:00",
"firstName": "John",
"lastName": "Doe",
"email": "john.doe@example.com"
},
{
"id": "b789012",
"modifiedDate": "2025-05-07T12:30:00",
"firstName": "Jane",
"lastName": "Smith",
"email": "jane.smith@example.com"
}
]
Sorting
modifiedDate
to sort the data:GET /attendee?sort=attendeeID:asc
Support
Modified at 2025-05-07 18:03:10