action telnyx_list_portout_request { label: "Retrieve a list of portout requests" description: "Returns the portout requests according to filters" provider: telnyx method: GET path: "/portouts" encoding: json input: { type: "object" properties: { "filter[carrier_name]": { type: "string" } "filter[spid]": { type: "string" } "filter[status]": { type: "string" enum: ["pending", "authorized", "ported", "rejected", "rejected-pending", "canceled"] } } additionalProperties: false } output: { type: "object" additionalProperties: true } }