openapi: 3.0.0 info: title: SAP API version: 1.0.0 servers: - url: http://localhost:8080 paths: /rfc/BX_AGR_ADD_URL: post: tags: - SMTR_NAVIGATION_MODULES_AX operationId: /rfc/BX_AGR_ADD_URL requestBody: content: application/json: schema: properties: ACTIVITY_GROUP: type: string maxLength: 30 INFOS: type: string default: ' ' maxLength: 12 TARGET_ID: type: integer format: int64 TEXT: type: string maxLength: 80 URL: type: string maxLength: 255 URL_TYPE: type: string default: URL maxLength: 20 X_POS: type: integer format: int64 default: 0 Y_POS: type: integer format: int64 default: 0 required: - ACTIVITY_GROUP - TARGET_ID responses: '200': description: OK content: application/json: schema: properties: NEW_ID: type: integer format: int64 '400': description: Bad request. 5XX: description: Unexpected error.