--- swagger: "2.0" info: x-ibm-name: bafapi-card-delete-customer-card title: BAFAPI Delete Customer Card version: 1.0.0 description: "" schemes: - https basePath: /bafapi-card-delete-customer-card 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: Success schema: $ref: '#/definitions/Response Body' 500: description: Error schema: $ref: '#/definitions/Error Response' parameters: - name: Request Data required: false in: body schema: $ref: '#/definitions/Request Data' tags: [] definitions: Request Data: description: "" type: object properties: CardId: type: string StatusCode: type: string ChannelId: type: string example: CardId: "17115013" StatusCode: "01" ChannelId: "1010" required: - CardId - StatusCode - ChannelId Response Body: description: "" type: object properties: responseCode: type: string responseDesc: type: string example: responseCode: "00" responseDesc: Card Status Changed Successfully Error Response: description: "" type: object properties: ResponseCode: type: string ResponseDesc: type: string example: ResponseCode: "99" ResponseDesc: Failed x-ibm-endpoints: - endpointUrl: https://apigateway.bankalfalah.com/bankalfalah/sb type: - production - development ...