openapi: 3.0.0 info: title: SAP API version: 1.0.0 servers: - url: http://localhost:8080 paths: /rfc/BAPI_BUPA_BANKDETAIL_CHANGE: post: tags: - BUBA_3 summary: 'SAP BP, BAPI: Change Bank Details' operationId: /rfc/BAPI_BUPA_BANKDETAIL_CHANGE requestBody: content: application/json: schema: properties: BANKDETAILDATA: type: object properties: BANK_CTRY: type: string maxLength: 3 description: Bank country key BANK_CTRYISO: type: string maxLength: 2 description: Country ISO code BANK_KEY: type: string maxLength: 15 description: Bank Keys BANK_ACCT: type: string maxLength: 18 description: Bank account number CTRL_KEY: type: string maxLength: 2 description: Bank Control Key BANK_REF: type: string maxLength: 20 description: Reference specifications for bank details ACCOUNTHOLDER: type: string maxLength: 60 description: Account Holder Name COLL_AUTH: type: string maxLength: 1 description: 'Indicator: Is there collection authorization ? enumValues: ""=No,X=Yes' enum: - '' - X EXTERNALBANKID: type: string maxLength: 20 description: Bank details ID in external system BANKACCOUNTNAME: type: string maxLength: 40 description: Name of Bank Account IBAN: type: string maxLength: 34 description: IBAN (International Bank Account Number) IBAN_FROM_DATE: type: string format: date description: Validity start of IBAN BANKDETAILVALIDFROM: type: string format: date description: Validity date (valid from) BANKDETAILVALIDTO: type: string format: date description: Validity Date (Valid To) BANKDETAILMOVEDATE: type: string format: date description: Date of Move BANKDETAILMOVEID: type: string maxLength: 4 description: ID of Target Details for Change of Bank Details (BP) BANKDETAILDATA_X: type: object properties: BANK_CTRY: type: string maxLength: 1 description: 'Updated information in related user data field enumValues: X=Update for the field,""=No update for the field' enum: - X - '' BANK_CTRYISO: type: string maxLength: 1 description: 'Updated information in related user data field enumValues: X=Update for the field,""=No update for the field' enum: - X - '' BANK_KEY: type: string maxLength: 1 description: 'Updated information in related user data field enumValues: X=Update for the field,""=No update for the field' enum: - X - '' BANK_ACCT: type: string maxLength: 1 description: 'Updated information in related user data field enumValues: X=Update for the field,""=No update for the field' enum: - X - '' CTRL_KEY: type: string maxLength: 1 description: 'Updated information in related user data field enumValues: X=Update for the field,""=No update for the field' enum: - X - '' BANK_REF: type: string maxLength: 1 description: 'Updated information in related user data field enumValues: X=Update for the field,""=No update for the field' enum: - X - '' ACCOUNTHOLDER: type: string maxLength: 1 description: 'Updated information in related user data field enumValues: X=Update for the field,""=No update for the field' enum: - X - '' COLL_AUTH: type: string maxLength: 1 description: 'Updated information in related user data field enumValues: X=Update for the field,""=No update for the field' enum: - X - '' EXTERNALBANKID: type: string maxLength: 1 description: 'Updated information in related user data field enumValues: X=Update for the field,""=No update for the field' enum: - X - '' UPDATEFLAG: type: string maxLength: 1 description: 'Change Indicator for BAI Structures in Business Partner enumValues: D=Delete,""=No action,U=Change,I=Insert' enum: - D - '' - U - I BANKACCOUNTNAME: type: string maxLength: 1 description: 'Updated information in related user data field enumValues: X=Update for the field,""=No update for the field' enum: - X - '' IBAN: type: string maxLength: 1 description: 'Updated information in related user data field enumValues: X=Update for the field,""=No update for the field' enum: - X - '' IBAN_FROM_DATE: type: string maxLength: 1 description: 'Updated information in related user data field enumValues: X=Update for the field,""=No update for the field' enum: - X - '' BANKDETAILVALIDFROM: type: string maxLength: 1 description: 'Updated information in related user data field enumValues: X=Update for the field,""=No update for the field' enum: - X - '' BANKDETAILVALIDTO: type: string maxLength: 1 description: 'Updated information in related user data field enumValues: X=Update for the field,""=No update for the field' enum: - X - '' BANKDETAILMOVEDATE: type: string maxLength: 1 description: 'Updated information in related user data field enumValues: X=Update for the field,""=No update for the field' enum: - X - '' BANKDETAILMOVEID: type: string maxLength: 1 description: 'Updated information in related user data field enumValues: X=Update for the field,""=No update for the field' enum: - X - '' BANKDETAILID: type: string maxLength: 4 description: Bank Details ID BUSINESSPARTNER: type: string maxLength: 10 description: Business Partner Number required: - BANKDETAILDATA - BANKDETAILID - BUSINESSPARTNER responses: '200': description: OK content: application/json: schema: properties: RETURN: type: array items: type: object properties: TYPE: type: string maxLength: 1 description: 'Message type: S Success, E Error, W Warning, I Info, A Abort' ID: type: string maxLength: 20 description: Message Class NUMBER: type: integer format: int64 description: Message Number MESSAGE: type: string maxLength: 220 description: Message Text LOG_NO: type: string maxLength: 20 description: 'Application log: log number' LOG_MSG_NO: type: integer format: int64 description: 'Application log: Internal message serial number' MESSAGE_V1: type: string maxLength: 50 description: Message Variable MESSAGE_V2: type: string maxLength: 50 description: Message Variable MESSAGE_V3: type: string maxLength: 50 description: Message Variable MESSAGE_V4: type: string maxLength: 50 description: Message Variable PARAMETER: type: string maxLength: 32 description: Parameter Name ROW: type: integer format: int32 description: Lines in parameter FIELD: type: string maxLength: 30 description: Field in parameter SYSTEM: type: string maxLength: 10 description: Logical system from which message originates '400': description: Bad request. 5XX: description: Unexpected error.