action telnyx_get_request { label: "getRequest" description: "Fetch single whatsapp detail report by id." provider: telnyx method: GET path: "/whatsapp_detail_record_reports/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" properties: { data: { type: "object" properties: { created_at: { type: "string" format: "date-time" } download_link: { type: "string" } end_date: { type: "string" format: "date-time" } id: { type: "string" } record_type: { type: "string" } start_date: { type: "string" format: "date-time" } status: { type: "string" enum: ["PENDING", "COMPLETE", "FAILED", "EXPIRED"] } } } } } }