> ## Documentation Index
> Fetch the complete documentation index at: https://docs.fireflies.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# ConfirmUploadResponse

> Schema for ConfirmUploadResponse

The `ConfirmUploadResponse` type is returned by the [confirmUpload](/graphql-api/mutation/confirm-upload) mutation. It indicates whether the upload confirmation was successful and transcription has been queued.

<ResponseField name="success" type="Boolean">
  Indicates whether the confirmation was successful and transcription has been queued for processing.
</ResponseField>

<ResponseField name="meeting_id" type="String">
  The unique identifier for the meeting that was confirmed.
</ResponseField>

<ResponseField name="message" type="String">
  A message describing the result of the confirmation operation.
</ResponseField>

## Example Response

```json theme={null}
{
  "success": true,
  "meeting_id": "abc123def456",
  "message": "Audio upload confirmed. Transcription has been queued."
}
```

## Additional Resources

<CardGroup cols={2}>
  <Card title="Confirm Upload" icon="link" href="/graphql-api/mutation/confirm-upload">
    Confirm the upload and start transcription
  </Card>

  <Card title="Create Upload URL" icon="link" href="/graphql-api/mutation/create-upload-url">
    Generate a pre-signed URL for uploads
  </Card>
</CardGroup>
