openapi: 3.0.0 info: title: SAP API version: 1.0.0 servers: - url: http://localhost:8080 paths: /rfc/ADDRESS_GET_COM: post: tags: - SAD2 operationId: /rfc/ADDRESS_GET_COM requestBody: content: application/json: schema: properties: ENTRY_ADRNR: type: string maxLength: 10 description: Address number ENTRY_COM_ART: type: string default: ' ' maxLength: 3 description: Required type of communication ENTRY_LFDNR: type: string default: ' ' maxLength: 3 description: Required serial number ENTRY_VERSION: type: string default: ' ' maxLength: 1 description: Version of address (national indicator) required: - ENTRY_ADRNR responses: '200': description: OK content: application/json: schema: properties: EX_COM_ART: type: string maxLength: 3 description: Type of communication EX_LFDNR: type: string maxLength: 3 description: Serial number EX_NAME1: type: string maxLength: 35 description: Address data/number EX_NUMBER: type: string maxLength: 1215 description: Address data/number '400': description: Bad request. 5XX: description: Unexpected error.