--- swagger: "2.0" info: description: Solution for consuming the information from the S080 which is the legacy system where all the catalogs information reside. version: "1.0" title: CNSV-CQR-D-CatalogsQueries x-ibm-name: cnsv-cqr-d-catalogsqueries name: "" host: localhost:8080 basePath: /api schemes: - https produces: - application/json paths: /v1/consumerService/serviceProduct/catalogs/{queryPath}: get: tags: - catalogs-general-controller summary: find operationId: findUsingGET consumes: - application/json produces: - application/json parameters: - name: queryPath in: path description: queryPath required: true type: string - name: uuid in: header description: uuid required: true type: string responses: 200: description: OK schema: $ref: '#/definitions/Serializable' 400: description: Missing or invalid Parameters. schema: $ref: '#/definitions/CatalogResponseError' 401: description: Authorization credentials are missing or invalid. schema: $ref: '#/definitions/CatalogResponseError' 404: description: Resource not found. schema: $ref: '#/definitions/CatalogResponseError' 500: description: The request failed due to an internal error/server unavailability. schema: $ref: '#/definitions/CatalogResponseError' definitions: CatalogResponseError: type: object properties: code: type: string details: type: string type: type: string Serializable: type: object x-ibm-configuration: enforced: true testable: true phase: realized securityDefinitions: OAuth2 Application Flow: type: oauth2 description: "" flow: application scopes: /api/v1: "" tokenUrl: https://api.banamex.com/mx-gcgapi/api/v1/oauth/token Client ID: type: apiKey description: "" in: header name: X-IBM-Client-Id security: - OAuth2 Application Flow: - /api/v1 Client ID: [] x-ibm-endpoints: - endpointUrl: https://api.banamex.com/mx-gcgapi type: - production - development ...