openapi: 3.0.0 info: title: SAP API version: 1.0.0 servers: - url: http://localhost:8080 paths: /rfc/BDL_DYNAMIC_SESSIONS: post: tags: - BDL3 summary: Reports on the dynamic sessions defined for a customer operationId: /rfc/BDL_DYNAMIC_SESSIONS requestBody: content: application/json: schema: properties: DYN_SESSIONS: type: array items: type: object properties: SESSIONNR: type: string maxLength: 10 description: Character Field Length = 10 EXTENSION: type: string maxLength: 3 description: 3-Byte field CONTRACT: type: string maxLength: 8 description: Character field, 8 characters long DESCRIPTIO: type: string maxLength: 8 description: Character field, 8 characters long PERIOD: type: integer format: int64 description: Numc3, internal use SESS_DATE: type: string format: date description: Session date JOBSTATUS: type: string maxLength: 12 description: Character field length 12 JOBPLANDAT: type: string format: date description: Planned Start Date for Background Job responses: '200': description: OK content: application/json: schema: properties: DYN_SESSIONS: type: array items: type: object properties: SESSIONNR: type: string maxLength: 10 description: Character Field Length = 10 EXTENSION: type: string maxLength: 3 description: 3-Byte field CONTRACT: type: string maxLength: 8 description: Character field, 8 characters long DESCRIPTIO: type: string maxLength: 8 description: Character field, 8 characters long PERIOD: type: integer format: int64 description: Numc3, internal use SESS_DATE: type: string format: date description: Session date JOBSTATUS: type: string maxLength: 12 description: Character field length 12 JOBPLANDAT: type: string format: date description: Planned Start Date for Background Job '400': description: Bad request. 5XX: description: Unexpected error.