--- swagger: "2.0" info: description: NC. This microservice is used for solution for consuming the information from the S080 legacy system where all the catalogs information reside. version: 1.0.0 title: CNSV-CQR-D-Specific-Catalogs x-ibm-name: cnsv-cqr-d-specific-catalogs name: "" host: 127.0.0.1 basePath: /api schemes: - https produces: - application/json paths: /v1/consumer-services/catalogs/activities: get: tags: - catalogs-activities operationId: catalogs-activities summary: find consumes: - application/json produces: - application/json parameters: - 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' /v1/consumer-services/catalogs/creditCardProducts: get: tags: - catalogs-credit-card-products operationId: catalogs-credit-card-products summary: find consumes: - application/json produces: - application/json parameters: - 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' /v1/consumer-services/catalogs/nationalities: get: tags: - catalogs-nationalities operationId: catalogs-nationalities summary: find consumes: - application/json produces: - application/json parameters: - 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' /v1/consumer-services/catalogs/occupations: get: tags: - catalogs-occupations operationId: catalogs-occupations summary: find consumes: - application/json produces: - application/json parameters: - 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' /v1/consumer-services/catalogs/personTypes: get: tags: - catalogs-person-types operationId: catalogs-person-types summary: find consumes: - application/json produces: - application/json parameters: - 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' /v1/consumer-services/catalogs/postalCodes: get: tags: - catalogs-postal-codes operationId: catalogs-postal-codes summary: find consumes: - application/json produces: - application/json parameters: - 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 ClientID: type: apiKey description: "" in: header name: X-IBM-Client-Id security: - OAuth2 Application Flow: - /api/v1 ClientID: [] x-ibm-endpoints: - endpointUrl: https://api.banamex.com/mx-gcgapi type: - production - development ...