--- swagger: "2.0" info: x-ibm-name: bafapi-wallet-get-all-customer-account title: BAFAPI Get All Customer Account version: 1.0.0 description: "" schemes: - https basePath: /bafapi-wallet-get-all-customer-account 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: Success schema: $ref: '#/definitions/Response Body' 500: description: Error schema: $ref: '#/definitions/Error Response' parameters: - name: RequestBody required: true in: body schema: $ref: '#/definitions/RequestData' definitions: RequestData: properties: CNIC: type: string description: CNIC example: "3530136562049" additionalProperties: false required: - CNIC Response Body: description: "" type: object properties: code: type: string description: type: string data: type: array items: properties: ID: type: string ATTRIBUTECODE: type: string ATTRIBUTENAME: type: string ATTRIBUTEVALUE: type: string ISMANDATORY: type: string ISUNIQUE: type: string ACCOUNTHOLDERID: type: string type: object example: code: "00" description: SUCCESS data: - ID: "559335147" ATTRIBUTECODE: Company Name ATTRIBUTENAME: Company Name ATTRIBUTEVALUE: THE CAPRICORN ENTERPRISES ISMANDATORY: "0" ISUNIQUE: "0" ACCOUNTHOLDERID: "559335145" - ID: "559335147" ATTRIBUTECODE: Company Name ATTRIBUTENAME: Company Name ATTRIBUTEVALUE: THE CAPRICORN ENTERPRISES ISMANDATORY: "0" ISUNIQUE: "0" ACCOUNTHOLDERID: "559335145" - ID: "559335147" ATTRIBUTECODE: Company Name ATTRIBUTENAME: Company Name ATTRIBUTEVALUE: THE CAPRICORN ENTERPRISES ISMANDATORY: "0" ISUNIQUE: "0" ACCOUNTHOLDERID: "559335145" 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 ...