--- swagger: "2.0" info: x-ibm-name: bafapi-onboarding-wallet-account-creation title: BAFAPI Wallet Creation Onboarding version: 1.0.0 description: This Api is use for create wallet after successful verification. schemes: - https basePath: /bafapi-onboarding-wallet-account-creation 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 clientIdHeader: type: apiKey in: header name: X-IBM-Client-Id clientSecretHeader: type: apiKey in: header name: X-IBM-Client-Secret security: - clientIdHeader: [] clientSecretHeader: [] OAuth: - GetToken x-ibm-configuration: testable: true enforced: true phase: realized paths: /v1: post: responses: 200: description: Sucess schema: $ref: '#/definitions/Response Body' 500: description: Error schema: $ref: '#/definitions/Error Response' parameters: - name: Request Body required: true in: body schema: $ref: '#/definitions/Request Body' definitions: Request Body: description: "" type: object properties: TRN: type: string description: ismandatory=true , Description:Unique Number , SpecialCharacter = not allowed Name: type: string description: 'ismandatory=true , Description: Name of customer ,SpecialCharacter = allowed' CNIC: type: string description: 'ismandatory=true , Description: 13 digits numeric value , SpecialCharacter = not allowed' DOB: type: string description: 'ismandatory=true , Description : Date of birth, SpecialCharacter = not allowed' BirthPlace: type: string description: 'ismandatory=true , Description: Birth Place ,SpecialCharacter = allowed' Address: type: string description: 'ismandatory=true , Description: Address ,SpecialCharacter = allowed' IssueDate: type: string description: 'ismandatory=true , Description : CNIC Issuance date , SpecialCharacter = not allowed' Reserved1: type: string description: 'ismandatory=false , Description : Reserved Field , SpecialCharacter = not allowed' Reserved2: type: string description: 'ismandatory=false , Description : Reserved Field , SpecialCharacter = not allowed' Reserved3: type: string description: 'ismandatory=false , Description : Reserved Field , SpecialCharacter = not allowed' Reserved4: type: string description: 'ismandatory=false , Description : Reserved Field , SpecialCharacter = not allowed' example: TRN: "123" Name: XYZ CNIC: "4220101598845" DOB: 31-05-1990 BirthPlace: KARACHI Address: 154 E JAHANGIR ROAD IssueDate: 07-07-2021 Reserved1: "" Reserved2: "" Reserved3: "" Reserved4: "" required: - TRN - Name - CNIC - DOB - BirthPlace - Address - IssueDate - Reserved1 - Reserved2 - Reserved3 - Reserved4 Response Body: description: "" type: object properties: ResponseCode: type: string description: 00 = Success , 99=Failed ResponseDesc: type: string example: ResponseCode: "00" ResponseDesc: Success required: - ResponseCode - ResponseDesc Error Response: 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 ...