> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.meetstream.ai/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.meetstream.ai/_mcp/server.

# Resume Bot Recording

POST https://api.meetstream.ai/api/v1/bots/{bot_id}/resume_recording

Resumes normal video, audio, stream, and real-time transcription capture for a paused bot
in a Google Meet meeting. The recording continues on the original timeline.

This operation is idempotent. Resuming a bot that is already recording is accepted and has
no additional effect.


Reference: https://docs.meetstream.ai/api-reference/api-endpoints/bot-endpoints/resume-bot-recording

## OpenAPI Specification

```yaml
openapi: 3.1.0
info:
  title: Meetstream API
  version: 1.0.0
paths:
  /api/v1/bots/{bot_id}/resume_recording:
    post:
      operationId: resumeBotRecording
      summary: Resume Bot Recording
      description: >
        Resumes normal video, audio, stream, and real-time transcription capture
        for a paused bot

        in a Google Meet meeting. The recording continues on the original
        timeline.


        This operation is idempotent. Resuming a bot that is already recording
        is accepted and has

        no additional effect.
      tags:
        - bots
      parameters:
        - name: bot_id
          in: path
          description: The ID returned when the bot was created.
          required: true
          schema:
            type: string
        - name: Authorization
          in: header
          description: 'Format: Token <your_api_key>'
          required: true
          schema:
            type: string
      responses:
        '200':
          description: The resume command was accepted.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ResumeRecordingResponse'
        '401':
          description: Missing or invalid API key.
          content:
            application/json:
              schema:
                description: Any type
        '403':
          description: The bot does not belong to your account.
          content:
            application/json:
              schema:
                description: Any type
        '404':
          description: Bot not found.
          content:
            application/json:
              schema:
                description: Any type
        '409':
          description: The bot is not currently in the meeting.
          content:
            application/json:
              schema:
                description: Any type
        '429':
          description: >-
            Rate limit exceeded. This endpoint allows 30 requests per minute per
            bot.
          content:
            application/json:
              schema:
                description: Any type
        '503':
          description: The bot is not currently recording or is unreachable.
          content:
            application/json:
              schema:
                description: Any type
servers:
  - url: https://api.meetstream.ai
    description: Meetstream API v1
components:
  schemas:
    ResumeRecordingResponseStatus:
      type: string
      enum:
        - accepted
      description: Indicates that the resume command was accepted.
      title: ResumeRecordingResponseStatus
    ResumeRecordingResponseCommand:
      type: string
      enum:
        - resume_recording
      description: The recording command that was accepted.
      title: ResumeRecordingResponseCommand
    ResumeRecordingResponse:
      type: object
      properties:
        status:
          $ref: '#/components/schemas/ResumeRecordingResponseStatus'
          description: Indicates that the resume command was accepted.
        bot_id:
          type: string
          description: The ID of the bot receiving the command.
        command:
          $ref: '#/components/schemas/ResumeRecordingResponseCommand'
          description: The recording command that was accepted.
      required:
        - status
        - bot_id
        - command
      title: ResumeRecordingResponse
  securitySchemes:
    TokenAuth:
      type: apiKey
      in: header
      name: Authorization
      description: 'Format: Token <your_api_key>'

```

## Examples



**Response**

```json
{
  "status": "accepted",
  "bot_id": "83acdd72-3257-4b06-a2e9-0d879dc571ff",
  "command": "resume_recording"
}
```

**SDK Code**

```python
import requests

url = "https://api.meetstream.ai/api/v1/bots/83acdd72-3257-4b06-a2e9-0d879dc571ff/resume_recording"

headers = {"Authorization": "<apiKey>"}

response = requests.post(url, headers=headers)

print(response.json())
```

```javascript
const url = 'https://api.meetstream.ai/api/v1/bots/83acdd72-3257-4b06-a2e9-0d879dc571ff/resume_recording';
const options = {method: 'POST', headers: {Authorization: '<apiKey>'}};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
```

```go
package main

import (
	"fmt"
	"net/http"
	"io"
)

func main() {

	url := "https://api.meetstream.ai/api/v1/bots/83acdd72-3257-4b06-a2e9-0d879dc571ff/resume_recording"

	req, _ := http.NewRequest("POST", url, nil)

	req.Header.Add("Authorization", "<apiKey>")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
```

```ruby
require 'uri'
require 'net/http'

url = URI("https://api.meetstream.ai/api/v1/bots/83acdd72-3257-4b06-a2e9-0d879dc571ff/resume_recording")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Post.new(url)
request["Authorization"] = '<apiKey>'

response = http.request(request)
puts response.read_body
```

```java
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.post("https://api.meetstream.ai/api/v1/bots/83acdd72-3257-4b06-a2e9-0d879dc571ff/resume_recording")
  .header("Authorization", "<apiKey>")
  .asString();
```

```php
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('POST', 'https://api.meetstream.ai/api/v1/bots/83acdd72-3257-4b06-a2e9-0d879dc571ff/resume_recording', [
  'headers' => [
    'Authorization' => '<apiKey>',
  ],
]);

echo $response->getBody();
```

```csharp
using RestSharp;

var client = new RestClient("https://api.meetstream.ai/api/v1/bots/83acdd72-3257-4b06-a2e9-0d879dc571ff/resume_recording");
var request = new RestRequest(Method.POST);
request.AddHeader("Authorization", "<apiKey>");
IRestResponse response = client.Execute(request);
```

```swift
import Foundation

let headers = ["Authorization": "<apiKey>"]

let request = NSMutableURLRequest(url: NSURL(string: "https://api.meetstream.ai/api/v1/bots/83acdd72-3257-4b06-a2e9-0d879dc571ff/resume_recording")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "POST"
request.allHTTPHeaderFields = headers

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error as Any)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()
```