action telnyx_get_mdr_request { label: "getMdrRequest" description: "Fetch single messaging detail report by id." provider: telnyx method: GET path: "/reports/batch_mdr_reports/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" properties: { data: { type: "object" properties: { connections: { type: "array" items: { type: "integer" format: "int64" } } created_at: { type: "string" format: "date-time" } directions: { type: "array" items: { type: "string" enum: ["INBOUND", "OUTBOUND"] } } end_date: { type: "string" format: "date-time" } filters: { type: "array" items: { type: "object" properties: { billing_group: { type: "string" } cld: { type: "string" } cld_filter: { type: "string" enum: ["contains", "starts_with", "ends_with"] } cli: { type: "string" } cli_filter: { type: "string" enum: ["contains", "starts_with", "ends_with"] } filter_type: { type: "string" enum: ["and", "or"] } tags_list: { type: "string" } } } } id: { type: "string" format: "uuid" description: "Identifies the resource" } profiles: { type: "string" } record_type: { type: "string" } record_types: { type: "array" items: { type: "string" enum: ["INCOMPLETE", "COMPLETED", "ERRORS"] } } report_name: { type: "string" } report_url: { type: "string" } start_date: { type: "string" format: "date-time" } status: { type: "string" enum: ["PENDING", "COMPLETE", "FAILED", "EXPIRED"] } updated_at: { type: "string" format: "date-time" } } } } } }