action telnyx_list_verifications { label: "List verifications by phone number" provider: telnyx method: GET path: "/verifications/by_phone_number/{phone_number}" encoding: json input: { type: "object" properties: { phone_number: { type: "string" description: "+E164 formatted phone number." } } required: ["phone_number"] additionalProperties: false } output: { type: "object" required: ["data", "meta"] properties: { data: { type: "array" items: { type: "object" properties: { call_timeout_secs: { type: "integer" description: "This is the number of seconds before the call ends, if the verification makes a call. Note: this will override the `default_call_timeout_secs` on the Verify profile." } created_at: { type: "string" } id: { type: "string" format: "uuid" } phone_number: { type: "string" description: "+E164 formatted phone number." } record_type: { type: "string" description: "The possible verification record types." enum: ["verification"] } status: { type: "string" description: "The possible statuses of the verification request." enum: ["pending", "sms_delivery_failed", "accepted", "expired", "not_enough_credit", "network_error", "number_unreachable", "internal_error", "invalid_destination", "timed_out"] } timeout_secs: { type: "integer" description: "This is the number of seconds before the code of the request is expired. Once this request has expired, the code will no longer verify the user. Note: this will override the `default_verification_timeout_secs` on the Verify profile." } updated_at: { type: "string" } verification_type: { type: "string" description: "The possible types of verification." enum: ["sms_verification", "psd2_verification", "whatsapp_verification", "call_verification", "flashcall_verification"] } verify_profile_id: { type: "string" format: "uuid" description: "The identifier of the associated Verify profile." } } } } meta: { type: "object" properties: { page_number: { type: "integer" } page_size: { type: "integer" } total_pages: { type: "integer" } total_results: { type: "integer" } } } } } }