openapi: 3.0.0 info: title: SAP API version: 1.0.0 servers: - url: http://localhost:8080 paths: /rfc/BAPI_FLCUST_CREATEFROMDATA: post: tags: - SAPBC_BAPI_SCUSTOMER summary: Create New Flight Customer operationId: /rfc/BAPI_FLCUST_CREATEFROMDATA requestBody: content: application/json: schema: properties: CUSTOMER_DATA: type: object properties: CUSTNAME: type: string maxLength: 25 description: Customer name FORM: type: string maxLength: 15 description: Form of address STREET: type: string maxLength: 30 description: Street POBOX: type: string maxLength: 10 description: PO Box POSTCODE: type: string maxLength: 10 description: Postal Code CITY: type: string maxLength: 25 description: City COUNTR: type: string maxLength: 3 description: Country Indic. COUNTR_ISO: type: string maxLength: 2 description: ISO country code REGION: type: string maxLength: 3 description: Region PHONE: type: string maxLength: 30 description: Telephone number of flight customer EMAIL: type: string maxLength: 40 description: Customer e-mail address CUSTTYPE: type: string maxLength: 1 description: 'Customer type enumValues: P=Private Customer,B=Business Customer' enum: - P - B DISCOUNT: type: integer format: int64 description: Discount rate LANGU: type: string maxLength: 1 description: Language Key LANGU_ISO: type: string maxLength: 2 description: ISO language code TEST_RUN: type: string default: ' ' maxLength: 1 description: Switch to simulation mode EXTENSION_IN: type: array items: type: object properties: STRUCTURE: type: string maxLength: 30 description: Structure name of BAPI table extension VALUEPART1: type: string maxLength: 240 description: Data part of BAPI extension parameter VALUEPART2: type: string maxLength: 240 description: Data part of BAPI extension parameter VALUEPART3: type: string maxLength: 240 description: Data part of BAPI extension parameter VALUEPART4: type: string maxLength: 240 description: Data part of BAPI extension parameter required: - CUSTOMER_DATA responses: '200': description: OK content: application/json: schema: properties: CUSTOMERNUMBER: type: integer format: int64 description: Customer Number EXTENSION_IN: type: array items: type: object properties: STRUCTURE: type: string maxLength: 30 description: Structure name of BAPI table extension VALUEPART1: type: string maxLength: 240 description: Data part of BAPI extension parameter VALUEPART2: type: string maxLength: 240 description: Data part of BAPI extension parameter VALUEPART3: type: string maxLength: 240 description: Data part of BAPI extension parameter VALUEPART4: type: string maxLength: 240 description: Data part of BAPI extension parameter 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.