action telnyx_list_phone_number_blocks_jobs { label: "Lists the phone number blocks jobs" provider: telnyx method: GET path: "/phone_number_blocks/jobs" encoding: json input: { type: "object" properties: { "filter[status]": { type: "string" description: "Identifies the status of the background job." enum: ["pending", "in_progress", "completed", "failed"] } "filter[type]": { type: "string" description: "Identifies the type of the background job." enum: ["delete_phone_number_block"] } sort: { type: "string" enum: ["created_at"] } } additionalProperties: false } output: { type: "object" additionalProperties: true } }