<aside> 💡 IMPORTANT: THIS INTEGRATION IS IN BETA STATUS

</aside>

General Process

The process to obtain event data is very straightforward:

Host

The host used to make API calls is https://api.update.ai

Authentication

You will be provided with a client ID and a client Secret. These keys are generated by our support team ([email protected]). To authenticate API calls the following headers are needed:

Name Value
x-uai-client-id <client id provided>
x-uai-client-secret <client secret provided>

<aside> 💡 IMPORTANT: The API may return additional fields beyond those described in this document. Please only use the fields outlined here. If you encounter other fields that seem useful, feel free to use them; however, fields not documented here are likely not relevant to your needs.

</aside>

1. Retrieve list of past meetings

<aside> 💡 IMPORTANT: By default this endpoint will return all of past meetings, even if they are still being processed. Make sure to pull event details only if Status = ‘READY’.

</aside>

Request

curl --location --request GET '<https://api.update.ai/v1/events/past>' \\
--header 'X-UAI-Client-Id: <clientId>' \\
--header 'X-UAI-Client-Secret: <clientSecret>'

Query strings

Name Description Type Default Is mandatory
from Scheduled start date greater than provided value Date ISO string none No
to Scheduled start date lower than provided value Date ISO string none No
page Page requested number 1 no
limit Amount of items to return per page number 7 no

Response