Is there a specific state the recording resource needs to be in before hitting the start endpoint? I’m getting a 404 Not Found when calling PUT /api/v2/recordings/recordings/{recordingId}/start immediately after the recording is created. The recording exists and shows as ‘created’ in the GET response. Tried waiting 2 seconds but still no luck. Here’s the python snippet:
response = requests.put(f'{base_url}/recordings/recordings/{rec_id}/start', headers=auth_headers)
print(response.status_code) # 404
What am I missing?