openapi: 3.0.1 info: title: Internal Authentication Proxy WS description: Rest Proxy Manager Operations 2020R1 version: "25R1.0" paths: /proxy/serviceAvailable: get: tags: - monitoring description: Check if service is available operationId: serviceAvailable responses: "200": description: OK deprecated: true /proxy/serviceHealth/{service}: get: tags: - monitoring description: Service health operation operationId: serviceHealth parameters: - name: service in: path description: The service value. required: true schema: type: string responses: "200": description: OK content: application/json: schema: type: string /proxy/sessions: post: tags: - session description: "Service to initialise the session, No identifier is given" operationId: initSessionNoId requestBody: description: "Request key, value : principal(pan/encrypted pan" content: application/json: schema: $ref: '#/components/schemas/INSERequest' required: true responses: "201": description: Created content: application/json: schema: $ref: '#/components/schemas/ProxySession' "400": description: Bad Request content: application/json: schema: $ref: '#/components/schemas/AuthenticationHUBError' "404": description: Not Found content: application/json: schema: $ref: '#/components/schemas/AuthenticationHUBError' "403": description: Forbidden content: application/json: schema: $ref: '#/components/schemas/AuthenticationHUBError' "520": description: Functional content: application/json: schema: $ref: '#/components/schemas/AuthenticationHUBError' "500": description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/AuthenticationHUBError' deprecated: true /proxy/sessions/{sessionId}: put: tags: - session description: Service to update the session operationId: updateSession parameters: - name: sessionId in: path description: The session identifier. required: true schema: type: string requestBody: description: "Request key, value : Request map" content: application/json: schema: $ref: '#/components/schemas/UPSERequest' required: true responses: "201": description: Created content: application/json: schema: $ref: '#/components/schemas/ProxySession' "400": description: Bad Request content: application/json: schema: $ref: '#/components/schemas/AuthenticationHUBError' "404": description: Not Found content: application/json: schema: $ref: '#/components/schemas/AuthenticationHUBError' "403": description: Forbidden content: application/json: schema: $ref: '#/components/schemas/AuthenticationHUBError' "520": description: Functional content: application/json: schema: $ref: '#/components/schemas/AuthenticationHUBError' "500": description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/AuthenticationHUBError' /proxy/sessions/{sessionId}/authentications/{authenticationId}: get: tags: - authentication description: Service to get an authentication operationId: getAuthentication parameters: - name: sessionId in: path description: The session identifier. required: true schema: type: string - name: authenticationId in: path description: The authentication identifier. required: true schema: type: string responses: "200": description: OK content: application/json: schema: $ref: '#/components/schemas/ProxyAuthent' "400": description: Bad Request content: application/json: schema: $ref: '#/components/schemas/AuthenticationHUBError' "404": description: Not Found content: application/json: schema: $ref: '#/components/schemas/AuthenticationHUBError' "403": description: Forbidden content: application/json: schema: $ref: '#/components/schemas/AuthenticationHUBError' "520": description: Functional content: application/json: schema: $ref: '#/components/schemas/AuthenticationHUBError' "500": description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/AuthenticationHUBError' /proxy/sessions/{sessionId}/authentications/{authenticationId}/stream: put: tags: - authentication description: Service to update an authentication operationId: updateAuthenticationStream parameters: - name: sessionId in: path description: The session identifier. required: true schema: type: string - name: authenticationId in: path description: The authentication identifier. required: true schema: type: string requestBody: description: "Request key, value" content: application/json: schema: type: array items: type: string format: byte required: true responses: "200": description: OK content: application/json: schema: $ref: '#/components/schemas/ProxyAuthent' "400": description: Bad Request content: application/json: schema: $ref: '#/components/schemas/AuthenticationHUBError' "404": description: Not Found content: application/json: schema: $ref: '#/components/schemas/AuthenticationHUBError' "403": description: Forbidden content: application/json: schema: $ref: '#/components/schemas/AuthenticationHUBError' "520": description: Functional content: application/json: schema: $ref: '#/components/schemas/AuthenticationHUBError' "500": description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/AuthenticationHUBError' /proxy/sessions/{sessionid}: post: tags: - session description: Service to initialise the session operationId: initSession parameters: - name: sessionid in: path description: The session identifier. required: true schema: type: string requestBody: description: "Request key, value : principal(pan/encrypted pan/cardholderId" content: application/json: schema: $ref: '#/components/schemas/INSERequest' required: true responses: "201": description: Created content: application/json: schema: $ref: '#/components/schemas/ProxySession' "400": description: Bad Request content: application/json: schema: $ref: '#/components/schemas/AuthenticationHUBError' "404": description: Not Found content: application/json: schema: $ref: '#/components/schemas/AuthenticationHUBError' "403": description: Forbidden content: application/json: schema: $ref: '#/components/schemas/AuthenticationHUBError' "520": description: Functional content: application/json: schema: $ref: '#/components/schemas/AuthenticationHUBError' "500": description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/AuthenticationHUBError' delete: tags: - session description: Service to delete a session by identifier operationId: deleteSession parameters: - name: sessionid in: path description: The session identifier. required: true schema: type: string requestBody: description: "Request key, value" content: application/json: schema: $ref: '#/components/schemas/DELRequest' required: true responses: "200": description: OK content: application/json: schema: $ref: '#/components/schemas/ProxyDeleteSession' /proxy/sessions/{sessionid}/authentications: post: tags: - authentication description: Service to initialise an authentication operationId: initAuthentication parameters: - name: sessionid in: path description: The session identifier. required: true schema: type: string requestBody: description: "Request key, value" content: application/json: schema: $ref: '#/components/schemas/INAURequest' required: true responses: "201": description: Created content: application/json: schema: $ref: '#/components/schemas/ProxyAuthent' "400": description: Bad Request content: application/json: schema: $ref: '#/components/schemas/AuthenticationHUBError' "404": description: Not Found content: application/json: schema: $ref: '#/components/schemas/AuthenticationHUBError' "403": description: Forbidden content: application/json: schema: $ref: '#/components/schemas/AuthenticationHUBError' "520": description: Functional content: application/json: schema: $ref: '#/components/schemas/AuthenticationHUBError' "500": description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/AuthenticationHUBError' /proxy/sessions/{sessionid}/authentications/stream: post: tags: - authentication description: Service to initialise an authentication operationId: initAuthenticationStream parameters: - name: sessionid in: path description: The session identifier. required: true schema: type: string requestBody: description: "Request key, value" content: application/json: schema: type: array items: type: string format: byte required: true responses: "201": description: Created content: application/json: schema: $ref: '#/components/schemas/ProxyAuthent' "400": description: Bad Request content: application/json: schema: $ref: '#/components/schemas/AuthenticationHUBError' "404": description: Not Found content: application/json: schema: $ref: '#/components/schemas/AuthenticationHUBError' "403": description: Forbidden content: application/json: schema: $ref: '#/components/schemas/AuthenticationHUBError' "520": description: Functional content: application/json: schema: $ref: '#/components/schemas/AuthenticationHUBError' "500": description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/AuthenticationHUBError' /proxy/sessions/{sessionid}/authentications/{authenticationId}: delete: tags: - authentication description: Service to delete an authentication operationId: deleteAuthentication parameters: - name: sessionid in: path description: The session identifier. required: true schema: type: string - name: authenticationId in: path description: The authentication identifier. required: true schema: type: string requestBody: description: "Request key, value" content: application/json: schema: $ref: '#/components/schemas/DELRequest' required: true responses: "200": description: OK "404": description: Not Found content: application/json: schema: $ref: '#/components/schemas/AuthenticationHUBError' "520": description: Functional content: application/json: schema: $ref: '#/components/schemas/AuthenticationHUBError' "500": description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/AuthenticationHUBError' /proxy/sessions/{sessionid}/authentications/{authenticationid}: put: tags: - authentication description: Service to update an authentication operationId: updateAuthentication parameters: - name: sessionid in: path description: The session identifier. required: true schema: type: string - name: authenticationid in: path description: The authentication identifier. required: true schema: type: string requestBody: description: "Request key, value" content: application/json: schema: $ref: '#/components/schemas/UPAURequest' required: true responses: "200": description: OK content: application/json: schema: $ref: '#/components/schemas/ProxyAuthent' "400": description: Bad Request content: application/json: schema: $ref: '#/components/schemas/AuthenticationHUBError' "404": description: Not Found content: application/json: schema: $ref: '#/components/schemas/AuthenticationHUBError' "403": description: Forbidden content: application/json: schema: $ref: '#/components/schemas/AuthenticationHUBError' "520": description: Functional content: application/json: schema: $ref: '#/components/schemas/AuthenticationHUBError' "500": description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/AuthenticationHUBError' components: schemas: AuthData: type: object properties: encryptedValue: type: string id: type: string keyTag: type: string pattern: type: string type: type: string value: type: string AuthenticationHUBError: type: object properties: authMeans: type: array items: type: string authentId: type: string blackListStatus: type: array items: type: string cardHolderId: type: string comment: type: string errorCode: type: string extRbaDecision: type: string extRbaLevel: type: integer format: int32 externalWSResponse: type: string id: type: string issuerCode: type: string issuerRbaDecision: type: string issuerRbaLevel: type: integer format: int32 language: type: string message: type: string principal: $ref: '#/components/schemas/ErrorPrincipal' rbaDecision: type: string rbaLevel: type: string rbaReasonType: type: string site: type: string subIssuerCode: type: string tokenPan: type: string urlSite: type: string Challenge: type: object properties: id: type: integer format: int32 value: type: string DELRequest: type: object properties: authenticationMethod: type: string authenticationType: type: string challengeCancel: type: string contextTemporary: type: object additionalProperties: type: string encryptedAuthenticationValue: type: string enrollTrustedBeneficiaries: type: boolean failureCause: type: string finalStatus: type: string freeContext: type: object additionalProperties: type: string interactionCounter: type: integer format: int32 keyTag: type: string language: type: string refusalTrusted: type: boolean transStatus: type: string enum: - "Y" - "N" - U - A - C - D - R - I transStatusReason: type: string Ddn: type: object properties: pattern: type: string value: type: string ErrorPrincipal: type: object properties: type: type: string value: type: string INAURequest: type: object properties: authData: $ref: '#/components/schemas/AuthData' authTexts: type: array items: $ref: '#/components/schemas/TypeValue' callbackSite: type: string callbackUrl: type: string challenges: type: array items: $ref: '#/components/schemas/Challenge' chosenMean: type: string context: $ref: '#/components/schemas/ProxyContext' decoupledRequest: type: string defaultDeviceChoice: type: boolean ivrIssuerCode: type: string language: type: string mode: type: string oobAppURLInd: type: string otpPattern: $ref: '#/components/schemas/OtpPattern' text: type: string trustedEnrollmentRequest: type: boolean INSERequest: type: object properties: binShared: type: boolean clientVersion: type: string context: $ref: '#/components/schemas/ProxyContext' contextTemporary: type: object additionalProperties: type: string externalSessionId: type: string issuerCode: type: string language: type: string maintenanceModeRef: type: boolean principal: $ref: '#/components/schemas/Principal' service: type: string subIssuerCode: type: string OtpPattern: type: object properties: allow: type: string emailAllow: type: string emailExclude: type: string exclude: type: string ivrAllow: type: string ivrExclude: type: string smsAllow: type: string smsExclude: type: string Principal: type: object properties: keyTag: type: string single: type: boolean type: type: string enum: - tokenPan - securePan - cardHolderId - maskedPan - pan - tokenVPan - secureVPan - encryptedVPan - vPan - maskedVPan - encryptedPan - cardId value: type: string ProxyAmount: type: object properties: amount: type: string currency: $ref: '#/components/schemas/ProxyCurrency' exponent: type: string ProxyAuthent: type: object properties: authMeans: type: array items: type: string authRequestData: type: string authenticationMethod: type: string blackListStatus: type: array items: type: string challenge: type: array items: $ref: '#/components/schemas/ProxyKeyValue' challenges: type: array writeOnly: true items: $ref: '#/components/schemas/Challenge' chosenDevice: $ref: '#/components/schemas/ProxyDevice' chosenMean: type: string chosenMultiDevices: type: array items: $ref: '#/components/schemas/ProxyDevice' comment: type: string createdTime: type: string devices: type: array items: $ref: '#/components/schemas/ProxyDevice' errorCode: type: string enum: - "200070000" - "202010000" - "202020000" - "208000001" - "208000002" - "208000003" - "302000000" - "400000000" - "400000001" - "400000002" - "400000003" - "400000004" - "400001600" - "400001699" - "400010001" - "400010002" - "400010005" - "400010007" - "400010008" - "400010009" - "400010010" - "400010011" - "400010012" - "400010013" - "400010014" - "400010015" - "400010016" - "400010019" - "400010020" - "400010021" - "400010022" - "400010023" - "400010024" - "400010025" - "400010026" - "400010027" - "400010028" - "400010029" - "400010030" - "400010031" - "400010032" - "400010033" - "400010034" - "400010035" - "400010036" - "400010037" - "400020001" - "400020004" - "400020005" - "400020009" - "400020010" - "400020013" - "400020014" - "400020015" - "400020016" - "400020017" - "400020019" - "400020020" - "400020021" - "400020022" - "400020023" - "400020024" - "400020025" - "400020026" - "400020027" - "400020038" - "400020039" - "400030001" - "400030002" - "400030003" - "400030004" - "400040000" - "400050000" - "400050001" - "400050002" - "400050003" - "400050004" - "400050005" - "400050006" - "400050008" - "400050116" - "400050117" - "400050200" - "400050201" - "400050300" - "400050302" - "400050303" - "400050500" - "400050501" - "400050502" - "400050503" - "400050504" - "400050505" - "400050506" - "400050507" - "400050510" - "400050514" - "400050515" - "400050516" - "400050517" - "400050518" - "400050519" - "400050520" - "400050521" - "400050522" - "400050523" - "400050524" - "400050525" - "400050526" - "400050527" - "400050528" - "400050529" - "400050530" - "400050531" - "400050532" - "400050533" - "400060001" - "400060002" - "400060003" - "400060004" - "400060005" - "400060006" - "400060007" - "400060008" - "400060009" - "400060010" - "400060011" - "400060012" - "400060013" - "400060014" - "400060015" - "400060016" - "400060017" - "400060018" - "400060019" - "400060020" - "400060021" - "400060022" - "400060023" - "400060024" - "400060025" - "400060026" - "400060027" - "400060028" - "400060029" - "400070000" - "400070100" - "400070101" - "400080000" - "400080001" - "400090000" - "400090001" - "400090002" - "400090004" - "400090005" - "400090010" - "400090011" - "400090012" - "400090013" - "400090014" - "400090015" - "400090016" - "400090017" - "400090018" - "400090019" - "400090020" - "400090021" - "400090023" - "400090024" - "400090025" - "400090026" - "400090027" - "400090028" - "400090030" - "400090031" - "400090032" - "400090033" - "400090035" - "400090036" - "400090037" - "400090038" - "400090039" - "400090040" - "400090041" - "400090042" - "400090043" - "400090044" - "400090045" - "400090046" - "400090047" - "400090048" - "400090049" - "400090050" - "400090051" - "400090052" - "400090053" - "400090054" - "400090056" - "400090057" - "400090058" - "400090059" - "400090060" - "400090061" - "400090062" - "400090063" - "400090064" - "400090065" - "400090066" - "400090067" - "400090068" - "400090069" - "400090070" - "400090071" - "400090072" - "400090073" - "400090074" - "400090075" - "400090076" - "400090077" - "400090080" - "400090081" - "400090082" - "400090083" - "400090084" - "400090085" - "400090086" - "400090087" - "400090088" - "400090089" - "400090090" - "400090091" - "400090092" - "400090093" - "400090094" - "400090095" - "400100000" - "400100001" - "400100002" - "400100003" - "400100004" - "400100005" - "400100006" - "400100007" - "400100008" - "400100009" - "400100010" - "400100011" - "400100012" - "400100013" - "400100014" - "400100015" - "400100016" - "400100017" - "400100018" - "400100019" - "400100020" - "400100021" - "400100022" - "400100023" - "400100024" - "400100025" - "400100100" - "400110027" - "400110029" - "400110030" - "400110102" - "400110103" - "400110104" - "400110105" - "400110107" - "400110108" - "400110109" - "400110110" - "400110111" - "400110112" - "400110113" - "400110114" - "400110115" - "400110116" - "400110117" - "400110118" - "400110200" - "400110201" - "400110202" - "400110203" - "400110204" - "400110205" - "400110206" - "400110207" - "400110208" - "400110209" - "400110210" - "400110211" - "400110212" - "400110213" - "400110214" - "400110215" - "400110216" - "400110217" - "400110218" - "400110219" - "400110220" - "400110221" - "400110222" - "400110223" - "400110224" - "400110225" - "400110226" - "400110227" - "400110228" - "400110229" - "400110230" - "400110231" - "400110232" - "400110233" - "400110234" - "400110235" - "400110236" - "400110237" - "400110238" - "400110239" - "400110240" - "400110241" - "400110242" - "400110243" - "400110244" - "400110245" - "400110246" - "400110247" - "400110248" - "400110249" - "400110250" - "400110251" - "400110252" - "400110253" - "400110254" - "400110255" - "400110256" - "400110257" - "400110258" - "400110259" - "400110260" - "400110261" - "400110262" - "400110263" - "400110264" - "400110321" - "400110322" - "400110323" - "400110324" - "400110325" - "400110326" - "400110327" - "400110400" - "400110401" - "400110402" - "400110403" - "400110404" - "400110405" - "400110406" - "400110407" - "400200000" - "400200010" - "400200011" - "400200012" - "400200013" - "400200014" - "400200015" - "400300000" - "400400000" - "400990000" - "400990100" - "400990101" - "400990200" - "401000001" - "401000002" - "401000003" - "401000004" - "401000005" - "401000006" - "401000007" - "401000008" - "401000009" - "403000000" - "403010000" - "403010001" - "403010002" - "403010003" - "403020000" - "403020001" - "403020002" - "403020003" - "403020004" - "403020005" - "403020006" - "403020007" - "403020008" - "403030000" - "403030001" - "403030002" - "403040000" - "403040001" - "403050000" - "403060000" - "403070000" - "403080000" - "403080001" - "403080002" - "403900000" - "403990000" - "403990001" - "403990002" - "404000000" - "404001697" - "404001698" - "404010000" - "404010101" - "404010102" - "404011000" - "404012000" - "404020000" - "404020001" - "404020002" - "404030000" - "404030001" - "404030002" - "404030003" - "404030005" - "404030006" - "404030007" - "404040000" - "404050000" - "404060000" - "404060001" - "404060002" - "404060003" - "404060004" - "404060005" - "404060006" - "404060007" - "404060008" - "404060009" - "404060010" - "404060011" - "404060012" - "404060013" - "404060014" - "404060015" - "404060016" - "404060017" - "404070100" - "404170001" - "404990000" - "404990100" - "409010000" - "412010000" - "412010001" - "412010002" - "500000001" - "500000002" - "500000003" - "500000004" - "500000005" - "500000098" - "500000198" - "500000298" - "500000398" - "500000498" - "500000598" - "500000698" - "500000798" - "500000898" - "500000998" - "500001098" - "500001099" - "500001198" - "500001298" - "500001299" - "500001398" - "500001399" - "500001498" - "500001698" - "500001798" - "500001799" - "500001900" - "500010000" - "500010001" - "500010002" - "500010003" - "500010100" - "500010101" - "500010200" - "500011000" - "500011001" - "500011002" - "500012001" - "500012002" - "500012003" - "500013000" - "500013001" - "500013002" - "500013003" - "500020000" - "500020001" - "500020002" - "500020003" - "500020004" - "500020005" - "500030000" - "500030001" - "500030002" - "500030003" - "500040000" - "500060000" - "500060001" - "500060002" - "500060004" - "500060005" - "500060006" - "500060007" - "500070000" - "500070001" - "500070004" - "500070100" - "500070101" - "500080000" - "500080001" - "500090000" - "500090001" - "500090002" - "500090003" - "500090004" - "500100000" - "500100001" - "500100002" - "500100100" - "500100101" - "500110000" - "500110001" - "500110002" - "500110003" - "500110010" - "500110011" - "500110012" - "500400001" - "500400002" - "500400003" - "500400004" - "500400005" - "500400006" - "500400010" - "500400011" - "500400012" - "500400013" - "500400014" - "500400021" - "500400022" - "500400023" - "500400024" - "500400025" - "500400026" - "500400099" - "500400201" - "500400204" - "500400205" - "500400206" - "500400209" - "500400210" - "500400211" - "500400212" - "500400213" - "500400214" - "500400900" - "500400901" - "500400902" - "500900000" - "500901000" - "500901100" - "500902000" - "500902001" - "500902100" - "500990000" - "500990001" - "500990002" - "500990003" - "503070100" - "504000000" - "504000001" - "504000002" - "504010000" - "504010001" - "504010002" - "520000000" - "520000001" - "520000002" - "520000003" - "520000004" - "520000005" - "520000006" - "520001698" - "520010000" - "520012000" - "520013000" - "520070100" - "520100000" - "520110000" - "520900000" - "520901000" - "520990000" - "520990100" externalWSResponse: type: string freeContext: type: object additionalProperties: type: string id: type: string retryCounter: type: integer format: int32 status: type: string updatedTime: type: string virtualKeyboard: type: string virtualKeyboardVocalization: type: boolean ProxyContext: type: object properties: acqBin: type: string binRange: type: string brands: type: array items: type: string bridgingExtension: type: boolean browser: type: string cancelAddress: type: string cardType: type: string convertedAmount: $ref: '#/components/schemas/ProxyAmount' deviceChannel: type: string deviceId: type: string deviceInfo: $ref: '#/components/schemas/ProxyDeviceInfo' dsRbaDecision: type: string dsRbaLevel: type: string emvPaymentToken: type: string expiryDate: type: string freeContext: type: object additionalProperties: type: string ipv4: type: string ipv6: type: string merchant: $ref: '#/components/schemas/ProxyMerchant' messageCategory: type: string network: type: string os: type: string protocolVersion: type: string rcptCountry: type: string rejectAddress: type: string returnAddress: type: string text: type: string threeDSReqAuthData: type: string threeDSRequestorAppURL: type: string threeDSRequestorAuthenticationInd: type: string threeDSRequestorDecMaxTime: type: string threeDSRequestorDecReqInd: type: string threeRIInd: type: string title: type: string transactionAmount: $ref: '#/components/schemas/ProxyAmount' transactionDate: type: string ua: type: string userId: type: string xid: type: string ProxyCurrency: type: object properties: code: type: string label: type: string ProxyDeleteSession: type: object properties: comment: type: string createdTime: type: string externalReferentialCallStatus: type: string hashedSelectedMail: type: string hashedSelectedPhoneNumber: type: string principal: $ref: '#/components/schemas/Principal' rbaTestingDecision: type: string rbaTestingReasonType: type: string rbaTestingRuleName: type: string rbaTestingRuleSetInfo: type: string rbaTestingVerifiedConditionsName: type: string ruleSetTestingVersion: type: string selectedAuthentMeans: type: array items: type: string smsOrIvrFinalChoice: type: string smsPhoneOperator: type: string updatedTime: type: string ProxyDevice: type: object properties: id: type: string type: type: string value: type: string ProxyDeviceInfo: type: object properties: c001: type: string ProxyKeyValue: type: object properties: id: type: integer format: int32 value: type: string ProxyMerchant: type: object properties: country: type: string id: type: string mcc: type: string name: type: string url: type: string ProxySession: type: object properties: authMeans: type: array items: type: string authPayCredStatus: type: string authPayProcessReqInd: type: string blackListStatus: type: array items: type: string cardHolderId: type: string comment: type: string comments: type: string createdTime: type: string dafAdvice: type: string decoupledDecision: type: string enum: - "Y" - "N" errorCode: type: string enum: - "200070000" - "202010000" - "202020000" - "208000001" - "208000002" - "208000003" - "302000000" - "400000000" - "400000001" - "400000002" - "400000003" - "400000004" - "400001600" - "400001699" - "400010001" - "400010002" - "400010005" - "400010007" - "400010008" - "400010009" - "400010010" - "400010011" - "400010012" - "400010013" - "400010014" - "400010015" - "400010016" - "400010019" - "400010020" - "400010021" - "400010022" - "400010023" - "400010024" - "400010025" - "400010026" - "400010027" - "400010028" - "400010029" - "400010030" - "400010031" - "400010032" - "400010033" - "400010034" - "400010035" - "400010036" - "400010037" - "400020001" - "400020004" - "400020005" - "400020009" - "400020010" - "400020013" - "400020014" - "400020015" - "400020016" - "400020017" - "400020019" - "400020020" - "400020021" - "400020022" - "400020023" - "400020024" - "400020025" - "400020026" - "400020027" - "400020038" - "400020039" - "400030001" - "400030002" - "400030003" - "400030004" - "400040000" - "400050000" - "400050001" - "400050002" - "400050003" - "400050004" - "400050005" - "400050006" - "400050008" - "400050116" - "400050117" - "400050200" - "400050201" - "400050300" - "400050302" - "400050303" - "400050500" - "400050501" - "400050502" - "400050503" - "400050504" - "400050505" - "400050506" - "400050507" - "400050510" - "400050514" - "400050515" - "400050516" - "400050517" - "400050518" - "400050519" - "400050520" - "400050521" - "400050522" - "400050523" - "400050524" - "400050525" - "400050526" - "400050527" - "400050528" - "400050529" - "400050530" - "400050531" - "400050532" - "400050533" - "400060001" - "400060002" - "400060003" - "400060004" - "400060005" - "400060006" - "400060007" - "400060008" - "400060009" - "400060010" - "400060011" - "400060012" - "400060013" - "400060014" - "400060015" - "400060016" - "400060017" - "400060018" - "400060019" - "400060020" - "400060021" - "400060022" - "400060023" - "400060024" - "400060025" - "400060026" - "400060027" - "400060028" - "400060029" - "400070000" - "400070100" - "400070101" - "400080000" - "400080001" - "400090000" - "400090001" - "400090002" - "400090004" - "400090005" - "400090010" - "400090011" - "400090012" - "400090013" - "400090014" - "400090015" - "400090016" - "400090017" - "400090018" - "400090019" - "400090020" - "400090021" - "400090023" - "400090024" - "400090025" - "400090026" - "400090027" - "400090028" - "400090030" - "400090031" - "400090032" - "400090033" - "400090035" - "400090036" - "400090037" - "400090038" - "400090039" - "400090040" - "400090041" - "400090042" - "400090043" - "400090044" - "400090045" - "400090046" - "400090047" - "400090048" - "400090049" - "400090050" - "400090051" - "400090052" - "400090053" - "400090054" - "400090056" - "400090057" - "400090058" - "400090059" - "400090060" - "400090061" - "400090062" - "400090063" - "400090064" - "400090065" - "400090066" - "400090067" - "400090068" - "400090069" - "400090070" - "400090071" - "400090072" - "400090073" - "400090074" - "400090075" - "400090076" - "400090077" - "400090080" - "400090081" - "400090082" - "400090083" - "400090084" - "400090085" - "400090086" - "400090087" - "400090088" - "400090089" - "400090090" - "400090091" - "400090092" - "400090093" - "400090094" - "400090095" - "400100000" - "400100001" - "400100002" - "400100003" - "400100004" - "400100005" - "400100006" - "400100007" - "400100008" - "400100009" - "400100010" - "400100011" - "400100012" - "400100013" - "400100014" - "400100015" - "400100016" - "400100017" - "400100018" - "400100019" - "400100020" - "400100021" - "400100022" - "400100023" - "400100024" - "400100025" - "400100100" - "400110027" - "400110029" - "400110030" - "400110102" - "400110103" - "400110104" - "400110105" - "400110107" - "400110108" - "400110109" - "400110110" - "400110111" - "400110112" - "400110113" - "400110114" - "400110115" - "400110116" - "400110117" - "400110118" - "400110200" - "400110201" - "400110202" - "400110203" - "400110204" - "400110205" - "400110206" - "400110207" - "400110208" - "400110209" - "400110210" - "400110211" - "400110212" - "400110213" - "400110214" - "400110215" - "400110216" - "400110217" - "400110218" - "400110219" - "400110220" - "400110221" - "400110222" - "400110223" - "400110224" - "400110225" - "400110226" - "400110227" - "400110228" - "400110229" - "400110230" - "400110231" - "400110232" - "400110233" - "400110234" - "400110235" - "400110236" - "400110237" - "400110238" - "400110239" - "400110240" - "400110241" - "400110242" - "400110243" - "400110244" - "400110245" - "400110246" - "400110247" - "400110248" - "400110249" - "400110250" - "400110251" - "400110252" - "400110253" - "400110254" - "400110255" - "400110256" - "400110257" - "400110258" - "400110259" - "400110260" - "400110261" - "400110262" - "400110263" - "400110264" - "400110321" - "400110322" - "400110323" - "400110324" - "400110325" - "400110326" - "400110327" - "400110400" - "400110401" - "400110402" - "400110403" - "400110404" - "400110405" - "400110406" - "400110407" - "400200000" - "400200010" - "400200011" - "400200012" - "400200013" - "400200014" - "400200015" - "400300000" - "400400000" - "400990000" - "400990100" - "400990101" - "400990200" - "401000001" - "401000002" - "401000003" - "401000004" - "401000005" - "401000006" - "401000007" - "401000008" - "401000009" - "403000000" - "403010000" - "403010001" - "403010002" - "403010003" - "403020000" - "403020001" - "403020002" - "403020003" - "403020004" - "403020005" - "403020006" - "403020007" - "403020008" - "403030000" - "403030001" - "403030002" - "403040000" - "403040001" - "403050000" - "403060000" - "403070000" - "403080000" - "403080001" - "403080002" - "403900000" - "403990000" - "403990001" - "403990002" - "404000000" - "404001697" - "404001698" - "404010000" - "404010101" - "404010102" - "404011000" - "404012000" - "404020000" - "404020001" - "404020002" - "404030000" - "404030001" - "404030002" - "404030003" - "404030005" - "404030006" - "404030007" - "404040000" - "404050000" - "404060000" - "404060001" - "404060002" - "404060003" - "404060004" - "404060005" - "404060006" - "404060007" - "404060008" - "404060009" - "404060010" - "404060011" - "404060012" - "404060013" - "404060014" - "404060015" - "404060016" - "404060017" - "404070100" - "404170001" - "404990000" - "404990100" - "409010000" - "412010000" - "412010001" - "412010002" - "500000001" - "500000002" - "500000003" - "500000004" - "500000005" - "500000098" - "500000198" - "500000298" - "500000398" - "500000498" - "500000598" - "500000698" - "500000798" - "500000898" - "500000998" - "500001098" - "500001099" - "500001198" - "500001298" - "500001299" - "500001398" - "500001399" - "500001498" - "500001698" - "500001798" - "500001799" - "500001900" - "500010000" - "500010001" - "500010002" - "500010003" - "500010100" - "500010101" - "500010200" - "500011000" - "500011001" - "500011002" - "500012001" - "500012002" - "500012003" - "500013000" - "500013001" - "500013002" - "500013003" - "500020000" - "500020001" - "500020002" - "500020003" - "500020004" - "500020005" - "500030000" - "500030001" - "500030002" - "500030003" - "500040000" - "500060000" - "500060001" - "500060002" - "500060004" - "500060005" - "500060006" - "500060007" - "500070000" - "500070001" - "500070004" - "500070100" - "500070101" - "500080000" - "500080001" - "500090000" - "500090001" - "500090002" - "500090003" - "500090004" - "500100000" - "500100001" - "500100002" - "500100100" - "500100101" - "500110000" - "500110001" - "500110002" - "500110003" - "500110010" - "500110011" - "500110012" - "500400001" - "500400002" - "500400003" - "500400004" - "500400005" - "500400006" - "500400010" - "500400011" - "500400012" - "500400013" - "500400014" - "500400021" - "500400022" - "500400023" - "500400024" - "500400025" - "500400026" - "500400099" - "500400201" - "500400204" - "500400205" - "500400206" - "500400209" - "500400210" - "500400211" - "500400212" - "500400213" - "500400214" - "500400900" - "500400901" - "500400902" - "500900000" - "500901000" - "500901100" - "500902000" - "500902001" - "500902100" - "500990000" - "500990001" - "500990002" - "500990003" - "503070100" - "504000000" - "504000001" - "504000002" - "504010000" - "504010001" - "504010002" - "520000000" - "520000001" - "520000002" - "520000003" - "520000004" - "520000005" - "520000006" - "520001698" - "520010000" - "520012000" - "520013000" - "520070100" - "520100000" - "520110000" - "520900000" - "520901000" - "520990000" - "520990100" expiryDate: type: string extRbaDecision: type: string extRbaIssuerDecision: type: string extRbaIssuerLevel: type: integer format: int32 extRbaLevel: type: integer format: int32 externalWSResponse: type: string freeContext: type: object additionalProperties: type: string id: type: string issuerCode: type: string issuerRbaDecision: type: string issuerRbaLevel: type: integer format: int32 language: type: string merchantCategories: type: array items: type: string merchantCountryLocation: type: string pam: type: string principal: $ref: '#/components/schemas/Principal' principalBlackListed: type: string principalExemptionListed: type: string principalWhiteListed: type: string profilSetName: type: string rbaConditionName: type: string rbaDecision: type: string enum: - STRONG - NONE - REFUSED rbaExoneratingHint: type: string rbaLevel: type: string rbaReasonType: type: string rbaRuleName: type: string rbaRuleSetInfo: type: string ruleSetVersion: type: string service: type: string site: type: string subIssuerCode: type: string tokenPan: type: string trustedBeneficiaries: type: string enum: - ENROLLED - TO_ENROLL - INELIGIBLE - REFUSAL updatedTime: type: string urlSite: type: string virtualCard: $ref: '#/components/schemas/VirtualCard' TypeValue: required: - type - value type: object properties: type: type: string description: Type format: enum value: maxLength: 255 minLength: 1 type: string description: Value description: Type and value pair UPAURequest: type: object properties: authData: type: array items: $ref: '#/components/schemas/AuthData' authTexts: type: array items: $ref: '#/components/schemas/TypeValue' chosenDevice: type: string chosenMultiDevices: type: object additionalProperties: type: string ddn: $ref: '#/components/schemas/Ddn' freeContext: type: object additionalProperties: type: string language: type: string otp: type: string writeOnly: true pwd: type: string writeOnly: true sendAgain: type: string text: type: string UPSERequest: type: object properties: authData: $ref: '#/components/schemas/AuthData' refreshData: type: string VirtualCard: type: object properties: vMaskedPan: type: string vTokenPan: type: string