--- swagger: "2.0" info: x-ibm-name: bafapi-wallet-updateaccountdetails title: BAFAPI Update Account Details version: 1.0.0 description: "" schemes: - https basePath: /bafapi-wallet-updateaccountdetails consumes: - application/json produces: - application/json securityDefinitions: OAuth: type: oauth2 description: OAuth Authentication flow: application scopes: GetToken: "" tokenUrl: https://apigateway.bankalfalah.com/bankalfalah/sb/oauthproviderapi/oauth2/token clientSecretHeader: type: apiKey description: "" in: header name: X-IBM-Client-Secret clientIdHeader: type: apiKey in: header name: X-IBM-Client-Id security: - clientIdHeader: [] clientSecretHeader: [] OAuth: - GetToken x-ibm-configuration: testable: true enforced: true phase: realized paths: /v1: post: responses: 200: description: 200 OK schema: $ref: '#/definitions/ResponseBody' 500: description: Error schema: $ref: '#/definitions/ErrorResponse' parameters: - name: RequestBody required: true in: body schema: $ref: '#/definitions/RequestData' definitions: RequestData: properties: CNIC: type: string description: CNIC example: "8220354921869" Bio_Verified: properties: [] type: string description: Biometric Verified example: "Yes" Source_Of_Registration: properties: [] type: string description: Source of Registration example: Alfa== additionalProperties: false required: - CNIC - Bio_Verified - Source_Of_Registration ResponseBody: description: "" type: object properties: code: type: string description: type: string example: code: "00" description: SUCCESS ErrorResponse: description: "" type: object properties: ResponseCode: type: string ResponseDesc: type: string example: ResponseCode: "99" ResponseDesc: Failed tags: [] x-ibm-endpoints: - endpointUrl: https://apigateway.bankalfalah.com/bankalfalah/sb type: - production - development ...