openapi: 3.0.0 info: title: SAP API version: 1.0.0 servers: - url: http://localhost:8080 paths: /rfc/ARCHIV_CREATE_TABLE: post: tags: - OPTD operationId: /rfc/ARCHIV_CREATE_TABLE requestBody: content: application/json: schema: properties: AR_OBJECT: type: string maxLength: 10 description: ArchiveLink document type DEL_DATE: type: string format: date description: Delete date DOCUMENT: type: string format: byte description: SAP object type DOC_TYPE: type: string maxLength: 20 description: SAP object type FLENGTH: type: integer format: int64 description: SAP object type MANDT: type: string default: SY-MANDT maxLength: 3 description: SAP object type OBJECT_ID: type: string maxLength: 50 description: Unique object key of application SAP_OBJECT: type: string maxLength: 10 description: SAP object type ARCHIVOBJECT: type: array items: type: object properties: LINES: type: string maxLength: 1024 description: Character 1024 BINARCHIVOBJECT: type: array items: type: object properties: LINE: type: string format: byte description: 'Table analysis: For external table data up to length 1024' required: - AR_OBJECT - OBJECT_ID - SAP_OBJECT responses: '200': description: OK content: application/json: schema: properties: OUTDOC: type: object properties: ARC_DOC_ID: type: string maxLength: 40 description: 'SAP ArchiveLink: Document ID' CONTREP_ID: type: string maxLength: 2 description: Content Repository Identification DOC_CLASS: type: string maxLength: 20 description: 'SAP ArchiveLink: Technical document class' ARCHIVOBJECT: type: array items: type: object properties: LINES: type: string maxLength: 1024 description: Character 1024 BINARCHIVOBJECT: type: array items: type: object properties: LINE: type: string format: byte description: 'Table analysis: For external table data up to length 1024' '400': description: Bad request. 5XX: description: Unexpected error.