action rev_get_list_of_jobs { label: "Get List of Jobs" description: "Gets a list of transcription jobs submitted within the last 30 days in reverse chronological order up to the provided `limit` number of jobs per call. **Note:** Jobs older than 30 days will not be listed. Pagination is supported via passing the last job `id` from a previous call into `starting_after`." provider: rev method: GET path: "/jobs" encoding: json input: { type: "object" properties: { limit: { type: "integer" } starting_after: { type: "string" } } additionalProperties: false } output: { type: "array" items: { type: "object" } } }