action attio_get_call_recording { label: "Get call recording" description: "Get a single call recording by ID.\n\nThis endpoint is in beta. We will aim to avoid breaking changes, but small updates may be made as we roll out to more users.\n\nRequired scopes: `meeting:read`, `call_recording:read`." provider: attio method: GET path: "/v2/meetings/{meeting_id}/call_recordings/{call_recording_id}" encoding: json scopes: ["meeting:read", "call_recording:read"] input: { type: "object" properties: { call_recording_id: { type: "string" format: "uuid" description: "The ID of the call recording to retrieve." } meeting_id: { type: "string" format: "uuid" description: "The ID of the meeting this recording belongs to." } } required: ["call_recording_id", "meeting_id"] additionalProperties: false } output: { type: "object" description: "Success" required: ["data"] properties: { data: { type: "object" required: ["created_at", "created_by_actor", "id", "status", "web_url"] properties: { created_at: { type: "string" description: "The timestamp of when the call recording was created." } created_by_actor: { type: "object" description: "The actor that created this call recording." properties: { id: { type: "string" description: "An ID to identify the actor." } type: { type: "string" description: "The type of actor. [Read more information on actor types here](/docs/actors)." enum: ["api-token", "workspace-member", "system", "app"] } } } id: { type: "object" required: ["call_recording_id", "meeting_id", "workspace_id"] properties: { call_recording_id: { type: "string" format: "uuid" description: "The call recording ID of the call recording." } meeting_id: { type: "string" format: "uuid" description: "The ID of the meeting associated with this call recording." } workspace_id: { type: "string" format: "uuid" description: "The ID of the workspace this call recording belongs to." } } } status: { type: "string" description: "The status of the call recording. When a call recording is first created, it will have a status of `PROCESSING`. Once the recording is ready, it will transition to `COMPLETED`. If the recording fails for any reason, the status will be `FAILED`." enum: ["processing", "completed", "failed"] } web_url: { type: "string" format: "uri" description: "A URL that links directly to the call recording in the Attio web application." } } } } } }