--- swagger: "2.0" info: x-ibm-name: verify-finger-print title: Verify Finger Print version: 1.0.0 description: "" schemes: - https basePath: /nadra-bio-verification-api 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 description: "" in: header name: X-IBM-Client-Id clientSecretHeader: type: apiKey in: header name: X-IBM-Client-Secret security: - clientSecretHeader: [] OAuth: - GetToken clientIdHeader: [] x-ibm-configuration: testable: true enforced: true phase: realized paths: /v1: post: responses: 200: description: 200 OK schema: $ref: '#/definitions/ResponseBody' parameters: - name: RequestData required: true in: body schema: $ref: '#/definitions/RequestData' description: RequestData definitions: RequestData: description: "" type: object properties: TRANSACTION_ID: type: string SESSION_ID: type: string CITIZEN_NUMBER: type: string CONTACT_NUMBER: type: string FINGER_INDEX: type: string FINGER_TEMPLATE: type: string TEMPLATE_TYPE: type: string AREA_NAME: type: string CHANNEL_ID: type: string example: TRANSACTION_ID: "" SESSION_ID: "" CITIZEN_NUMBER: "4220159393029" CONTACT_NUMBER: "00000000000" FINGER_INDEX: "1" FINGER_TEMPLATE: "" TEMPLATE_TYPE: ISO_19794_2 AREA_NAME: sindh CHANNEL_ID: "11" ResponseBody: description: "" type: object properties: ResponseCode: type: string ResponseDescription: type: string SessionId: type: string CitizenNumber: type: string Name: type: string MotherName: type: string PresentAddress: type: string DateOfBirth: type: string Gender: type: string BirthPlace: type: string ExpiryDate: type: string example: ResponseCode: "100" ResponseDescription: successful SessionId: "2331100001220179690" CitizenNumber: "4220159393029" Name: RAZI ADNAN MotherName: 'MUNAWAR ' PresentAddress: HOUSE NUMBER XX/XX MOHALA DRIG ROAD CANTT BAZAAR SHAHDRA FAISAL KARACHI SHARKI DateOfBirth: "1965-08-14" Gender: male BirthPlace: KARACHI SHARKI ExpiryDate: "2035-06-26" tags: [] x-ibm-endpoints: - endpointUrl: https://apigateway.bankalfalah.com/bankalfalah/sb type: - production - development ...