get
https://api.surense.com/api/v1/meetings/exports/
Export meetings in a 3-stage process:
(1) Filter and choose which meetings to export using POST /meetings/exports - works like POST /meetings/search with filtering, returns the UUID of the export record.
(2) Check export status using GET /meetings/exports/{id} - status can be INITIATED, PROCESSING, PROCESSED, or FAILED.
(3) Download the file using POST /meetings/exports/{id}/download - returns the URL of the file in the url field that can be fetched using a simple HTTP GET request.
This is Stage 2 of 3: Check export status.