Enterprise API v1API: Get Processing Status

API: Get Processing Status

Retrieve the processing status and progress of multiple episodes at once, with a maximum of 100 records per request. Due to the large number of parameters, a POST method is used for this API call.

Endpoint

POSThttps://podwise.ai/api/ent/v1/episodes/status

Request Body

type RequestBody = {
  // A list of episode UUIDs
  uuids: string[],
}

Response

type Response = {
  // key is uuid
  [string]: {
    // episode title
    title?: string,
    status: "waiting" | "error" | "processing" | "done",
    // processing progress, integer between 0-100, only meaningful when status is "processing"
    progress: number,
    // only meaningful when status is "error"
    errCode?: string,
  }
}