<aside> 💡 IMPORTANT: THIS INTEGRATION IS IN BETA STATUS
</aside>
The process to obtain event data is very straightforward:
The host used to make API calls is https://api.update.ai
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>
<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