openapi: 3.2.0 info: contact: {} title: Infoworks Rest API V3 Get Cdata Connectors API version: '1.0' description: Infoworks Rest API V3 servers: - url: '{protocol}://{host}:{port}/v3' variables: protocol: default: http enum: - http - https host: default: localhost port: default: '3001' tags: - name: Get Cdata Connectors paths: /get-cdata-connectors: get: security: - BearerAuth: [] parameters: - required: true name: source_type in: query description: Source Type name schema: type: string - name: source_sub_type required: true in: query description: Source Sub Type name schema: type: string - name: driver_name required: true in: query description: Driver name schema: type: string summary: Get connection parameters for generic jdbc sources description: Get connection parameters for generic jdbc sources responses: '200': description: Ok. content: application/json: schema: allOf: - type: object properties: message: type: string example: Example Success Message - type: object properties: result: type: object properties: properties: type: array items: type: object properties: description: type: string example: The handle assigned to the Act! Premium Cloud account. isRequired: type: boolean example: true name: type: string example: ActCloudName value: type: string example: abc '400': description: Request has invalid body or parameters. content: application/json: schema: type: object allOf: - type: object properties: message: type: string example: Something went wrong details: type: object properties: {} - type: object properties: iw_code: type: string example: IW10006 help: type: string example: http://api.infoworks.io/help/IW10006 '401': description: Authentication Failed. Please check your Credentials content: application/json: schema: type: object allOf: - type: object properties: message: type: string example: Something went wrong details: type: object properties: {} - type: object properties: iw_code: type: string example: IW10005 help: type: string example: http://api.infoworks.io/help/IW10005 '403': description: Forbidden. User lacks access to specified resource. content: application/json: schema: type: object allOf: - type: object properties: message: type: string example: Something went wrong details: type: object properties: {} - type: object properties: iw_code: type: string example: IW10004 help: type: string example: http://api.infoworks.io/help/IW10004 '500': description: Internal Server Error. content: application/json: schema: type: object allOf: - type: object properties: message: type: string example: Something went wrong details: type: object properties: {} - type: object properties: iw_code: type: string example: IW10002 help: type: string example: http://api.infoworks.io/help/IW10002 tags: - Get Cdata Connectors components: securitySchemes: BearerAuth: type: http scheme: bearer bearerFormat: JWT BasicAuth: type: http scheme: basic