action crediwatch_verify_business_api_v1_verify_phone_get { label: "Verify Business" provider: crediwatch method: GET path: "/api/v1/verify/phone" encoding: json input: { type: "object" properties: { locking_period: { type: "object" } query: { type: "string" } } required: ["query"] additionalProperties: false } output: { type: "object" required: ["data", "meta"] properties: { data: { type: "object" properties: { answered_by: { type: "string" } error: { type: "string" } option_selected: { type: "string" } phone_number: { type: "string" } previously_verified_at: { type: "string" } progress: { type: "string" } token: { type: "string" } } } meta: { type: "object" required: ["query"] properties: { job_id: { type: "string" } job_time: { type: "integer" } query: { type: "string" } } } } } }