action crediwatch_status_sku_api_v1_status_sku_get { label: "Status Sku" provider: crediwatch method: GET path: "/api/v1/status/sku" encoding: json input: { type: "object" properties: { 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" } } } } } }