--- swagger: "2.0" info: title: XLG-PAT-P-BneSsnMgt description: This microservice will bu used for login feature of BNE applications version: 1.0.0 x-ibm-name: xlg-pat-p-bnessnmgt host: 127.0.0.1 schemes: - https basePath: /api produces: - application/json paths: /v1/x-global/bne/security/user/session: post: tags: - bne-open-user-session operationId: bne-open-user-session summary: To authenticate user with alias and RSA using STS E2E encryption in BNE description: This API is used to authenticate customer using STS E2EE for password encryption in BNE consumes: - application/json produces: - application/json parameters: - name: client_id in: header required: true type: string description: Client ID generated during application registration - name: Authorization in: header required: true type: string description: The Authorization Token received during login - name: Accept in: header required: true type: string description: Content-Types that are acceptable for the response - name: uuid in: header required: true type: string description: 128 bit UUID that you generate for every request - name: Accept-Language in: header required: false type: string description: List of acceptable human languages for response - name: Content-Type in: header required: true type: string description: Content-Types that are sent in the request - name: countryCode in: header required: true type: string description: Country code in 2 character ISO 3166 format - name: businessCode in: header required: true type: string description: Business code identified durin application registration - name: ChannelId in: header required: true type: string description: Channel where request originated - name: sid in: header required: true type: string description: Session is generated and returned on the first API call of the key exchange (GET e2e call) as response header, which needs to be resent on succesive calls of same session. - name: openSessionRequest in: body schema: $ref: '#/definitions/OpenSessionRequest' responses: 200: description: Successful operation. schema: $ref: '#/definitions/OpenSessionResponse' 400: description:
TypeCodeDetails
errorinvalidRequestMissing or invalid Parameters
schema: $ref: '#/definitions/ErrorResponse' 401: description:
TypeCodeDetails
errorunAuthorizedAuthorization credentials are missing or invalid
schema: $ref: '#/definitions/ErrorResponse' 403: description:
TypeCodeDetailsMore Info
erroraccessNotConfiguredThe request operation is not configured to access this resourceChannel/Country/Business provided in the request is not supported currently
schema: $ref: '#/definitions/ErrorResponse' 404: description:
TypeCodeDetailsMore Info
errorresourceNotFoundThe requested resource was not foundEmpty resource/resource not found
schema: $ref: '#/definitions/ErrorResponse' 422: description:
TypeCodeDetails
errorbusinessValidationFailedBusiness validation error occured on one or more parameters
schema: $ref: '#/definitions/ErrorResponse' 500: description:
TypeCodeDetails
fatalserverUnavailableThe request failed due to an internal error/server unavailability
schema: $ref: '#/definitions/ErrorResponse' delete: tags: - bne-close-user-session operationId: bne-close-user-session summary: To logout the customer from NGA and S15 session. Session id will become invalid after this is succesful description: This API will logout the customer from NGA and S15 session. Session id will become invalid after this is succesful consumes: - application/json produces: - application/json parameters: - name: client_id in: header required: true type: string description: Client ID generated during application registration - name: Authorization in: header required: true type: string description: The Authorization Token received during login - name: Accept in: header required: true type: string description: Content-Types that are acceptable for the response - name: uuid in: header required: true type: string description: 128 bit UUID that you generate for every request - name: Accept-Language in: header required: false type: string description: List of acceptable human languages for response - name: Content-Type in: header required: false type: string description: Content-Types that are sent in the request - name: countryCode in: header required: true type: string description: Country code in 2 character ISO 3166 format - name: businessCode in: header required: true type: string description: Business code identified durin application registration - name: ChannelId in: header required: true type: string description: Channel where request originated - name: sid in: header required: true type: string description: Session is generated and returned on the first API call of the key exchange (GET e2e call) as response header, which needs to be resent on succesive calls of same session. responses: 200: description: Successful operation. 400: description:
TypeCodeDetails
errorinvalidRequestMissing or invalid Parameters
schema: $ref: '#/definitions/ErrorResponse' 401: description:
TypeCodeDetails
errorunAuthorizedAuthorization credentials are missing or invalid
schema: $ref: '#/definitions/ErrorResponse' 403: description:
TypeCodeDetailsMore Info
erroraccessNotConfiguredThe request operation is not configured to access this resourceChannel/Country/Business provided in the request is not supported currently
schema: $ref: '#/definitions/ErrorResponse' 404: description:
TypeCodeDetailsMore Info
errorresourceNotFoundThe requested resource was not foundEmpty resource/resource not found
schema: $ref: '#/definitions/ErrorResponse' 422: description:
TypeCodeDetails
errorbusinessValidationFailedBusiness validation error occured on one or more parameters
schema: $ref: '#/definitions/ErrorResponse' 500: description:
TypeCodeDetails
fatalserverUnavailableThe request failed due to an internal error/server unavailability
schema: $ref: '#/definitions/ErrorResponse' definitions: OpenSessionRequest: type: object properties: dataCenterLocation: description: Data Center location (CSI) type: string example: "10" sessionRequiredFlag: description: To create a session in Backend Systems, this is always true type: boolean default: true userAuthentication: $ref: '#/definitions/UserAuthentication' required: - userAuthentication - sessionRequiredFlag - dataCenterLocation UserAuthentication: type: object properties: userId: description: Customer client number or alias type: string example: "493885731234" maxLength: 12 userIdType: description: Type of login ID used to authenticate type: string enum: - ALIAS - CUSTOMER_NUM example: CUSTOMER_NUM legalRepresentativeId: description: Unique identifier for corporate legal Representative. type: string example: "01" maxLength: 2 minLength: 2 encryptedPasswordText: description: | "E2EE encrypted customer password, must be Alphanumeric. The first 2 must be numeric and the last 6 must be alphanumeric" type: string example: Y&GGH$?eeMKS;zLRAbei applicationUrl: description: Application url type: string example: www.applicationUrl.com device: $ref: '#/definitions/Device' required: - userId - userIdType - legalRepresentativeId - encryptedPasswordText Device: type: object properties: devicePrint: description: The device printId for Cyota request. Encapsulates all parameters obtained by device fingerprint gathering code. type: string example: "12345" deviceTokenCookie: description: The value of the cookie. Device token cookie is to be passed for all the requests excluding the first request. type: string example: "123456789" userAgent: description: User Agent of the device. Browser Type e.g Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36 type: string example: Mozilla ipAddress: description: Ip address of the device. type: string example: 192.168.0.0 hardwareId: description: Mobile Hardware Id type: string example: 098H52ST479QE053V2 simId: description: Mobile Sim Id. The SUBSCRIBER IDENTITY MODULE Serial Number (SSN), or Integrated Circuit Card Id (ICC-Id). Or a unique hash value. type: string example: 1234567890ADFGHJKIU OpenSessionResponse: type: object properties: passwordExpiryDate: description: Password expiration date in format YYYY-MM-DD type: string format: date example: "2020-04-22" challengeServiceCode: description: Field to determine whether the SPA service is down and you have to send a dummy Challenge type: string enum: - OK - DUMMY default: OK lastLoginDate: description: Date of last customer login access in format YYYY-MM-DD type: string format: date example: 2020-04-2 lastLoginTime: description: Time of last customer login access in format HH:mm type: string example: 06:22 channelId: description: Channel Id that customer last logged in to. type: string example: "1234" stationName: description: Station Name to use in challenge type: string example: "12" dataCenterLocation: description: Data center location type: string example: "1234" customerName: description: Customer full name type: string example: Jose Luis Zepeda virtualAccountExistFlag: description: Field to know if the Customer have Virtual Accounts type: boolean example: true lastUpdatedDate: description: Last Updated Date of the customer information type: string format: date example: "2020-05-22" products: type: array items: $ref: '#/definitions/Product' legalRepresentative: $ref: '#/definitions/LegalRepresentative' customerService: type: array items: $ref: '#/definitions/CustomerService' required: - passwordExpiryDate - challengeServiceCode - lastLoginDate - lastLoginTime - lastChannelId - stationName - virtualAccountExistFlag - dataCenterLocation - customerService - products - customerName Product: properties: productCode: description: Product code classifies a product based upon its inherent characteristics, structure, and the market needs it addresses. Ex- Credit Card type: string example: "111" productSubCode: description: Product Sub Code. Ex- CitiGold type: string example: "144" relatedAccountCount: description: Total accounts related to the same productCode and productSubCode. type: integer example: 5 LegalRepresentative: properties: fullName: description: Name of corporate legal Representative type: string example: Juan Carlos Rivera legalRepresentativeId: description: Unique identifier for corporate legal Representative. type: string example: "01" CustomerService: required: - customerServiceNumber - customerServiceType properties: customerServiceNumber: description: Id of the bank service used by customer type: string example: "515" customerServiceType: description: Type of the bank service used by customer type: string example: "60" ErrorResponse: properties: type: type: string description: Invalid - Request did not confirm to the specification and was unprocessed and rejected. Please fix the value and try again enum: - error - warn - invalid - fatal code: description: Error code which qualifies the error type: string details: description: Human readable explanation specific to the occurrence of the problem type: string location: description: The name of the field that resulted in the error type: string moreInfo: description: URI to human readable documentation or detailed description of the error type: string uuid: description: 128 bit UUID that you generate for every request type: string timestamp: description: Timestamp of the error type: string required: - type - code 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 ...