action crediwatch_verify_name_api_v1_verify_name_get { label: "Verify Name" provider: crediwatch method: GET path: "/api/v1/verify/name" encoding: json input: { type: "object" properties: { city: { type: "string" } query: { type: "string" } state: { type: "string" } } required: ["query"] additionalProperties: false } output: { type: "object" required: ["data", "meta"] properties: { data: { type: "array" items: { type: "object" properties: { business_name: { type: "string" } city: { type: "string" } department_code_and_type: { type: "array" items: { type: "string" } } entity_type: { type: "string" } is_gstn_verified: { type: "boolean" } nature_of_business: { type: "array" items: { type: "string" } } pincode: { type: "integer" } registration_date: { type: "string" } registration_type: { type: "string" } state: { type: "string" } } } } meta: { type: "object" required: ["query"] properties: { job_id: { type: "string" } job_time: { type: "integer" } query: { type: "string" } } } } } }