action telnyx_list_sub_number_orders { label: "List sub number orders" description: "Get a paginated list of sub number orders." provider: telnyx method: GET path: "/sub_number_orders" encoding: json input: { type: "object" properties: { "filter[country_code]": { type: "string" } "filter[order_request_id]": { type: "string" format: "uuid" } "filter[phone_number_type]": { type: "string" } "filter[phone_numbers_count]": { type: "integer" } "filter[user_id]": { type: "string" format: "uuid" } } additionalProperties: false } output: { type: "object" additionalProperties: true } }