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