action telnyx_get_cdr_requests { label: "getCdrRequests" description: "Fetch all previous requests for messaging detail reports. Messaging detail reports are reports for pulling all messaging records. " provider: telnyx method: GET path: "/reports/batch_mdr_reports" encoding: json input: { type: "object" properties: { "page[number]": { type: "integer" format: "int32" } "page[size]": { type: "integer" format: "int32" } } additionalProperties: false } output: { type: "object" properties: { data: { type: "array" items: { 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" } } } } meta: { type: "object" properties: { page_number: { type: "integer" } page_size: { type: "integer" } total_pages: { type: "integer" } total_results: { type: "integer" } } } } } }