openapi: 3.0.0 info: title: SAP API version: 1.0.0 servers: - url: http://localhost:8080 paths: /rfc/CRM_GET_KEYDATA: post: tags: - CRMT operationId: /rfc/CRM_GET_KEYDATA requestBody: content: application/json: schema: properties: I_BLOCKSIZE: type: integer format: int32 default: 50000 I_RECORD: type: integer format: int32 default: 1 I_TABNAME: type: string maxLength: 30 I_WHERE: type: string maxLength: 128 I_WITH_MANDT: type: string maxLength: 1 T_KEYDATA: type: array items: type: object properties: KEYDATA: type: string maxLength: 256 description: Data Element for Concatenated Key required: - I_TABNAME responses: '200': description: OK content: application/json: schema: properties: E_FINISHED: type: string maxLength: 1 E_NEXTRECORD: type: integer format: int32 E_STATUS: type: integer format: int32 T_KEYDATA: type: array items: type: object properties: KEYDATA: type: string maxLength: 256 description: Data Element for Concatenated Key '400': description: Bad request. 5XX: description: Unexpected error.