openapi: 3.0.0 info: title: SAP API version: 1.0.0 servers: - url: http://localhost:8080 paths: /rfc/BDL_GET_SESSION_SID_INSTNO: post: tags: - BDL3 summary: Get a list of SIDs and installation numbers operationId: /rfc/BDL_GET_SESSION_SID_INSTNO requestBody: content: application/json: schema: properties: CLIENT: type: string maxLength: 3 description: 3-Byte field SESSNO: type: string maxLength: 10 description: Character field length = 10 SYSTEMS: type: array items: type: object properties: SESSIONNR: type: string maxLength: 10 description: Character Field Length = 10 MANDANT: type: string maxLength: 3 description: 3-Byte field INSTALL_NO: type: integer format: int64 description: 10 digit number SID: type: string maxLength: 8 description: Name of the SAP System CUST_NO: type: integer format: int64 description: 10 digit number CONTRACT: type: string maxLength: 8 description: Contract type DESCRIPTIO: type: string maxLength: 8 description: Session subtype FUNCMOD: type: string maxLength: 6 description: Character field of length 6 HOST: type: string maxLength: 32 description: Character field, length 32 INSTANCE: type: string maxLength: 2 description: Version Number Component SEQNO: type: integer format: int64 description: Sequence number CONTEXT: type: string maxLength: 20 description: Context TYPE: type: string maxLength: 1 description: Single-Character Flag DATUM: type: string format: date description: Current Date of Application Server UHRZEIT: type: string maxLength: 6 description: Current Time of Application Server CODEPAGE: type: integer format: int64 description: SAP Character Set ID required: - CLIENT - SESSNO responses: '200': description: OK content: application/json: schema: properties: SYSTEMS: type: array items: type: object properties: SESSIONNR: type: string maxLength: 10 description: Character Field Length = 10 MANDANT: type: string maxLength: 3 description: 3-Byte field INSTALL_NO: type: integer format: int64 description: 10 digit number SID: type: string maxLength: 8 description: Name of the SAP System CUST_NO: type: integer format: int64 description: 10 digit number CONTRACT: type: string maxLength: 8 description: Contract type DESCRIPTIO: type: string maxLength: 8 description: Session subtype FUNCMOD: type: string maxLength: 6 description: Character field of length 6 HOST: type: string maxLength: 32 description: Character field, length 32 INSTANCE: type: string maxLength: 2 description: Version Number Component SEQNO: type: integer format: int64 description: Sequence number CONTEXT: type: string maxLength: 20 description: Context TYPE: type: string maxLength: 1 description: Single-Character Flag DATUM: type: string format: date description: Current Date of Application Server UHRZEIT: type: string maxLength: 6 description: Current Time of Application Server CODEPAGE: type: integer format: int64 description: SAP Character Set ID '400': description: Bad request. 5XX: description: Unexpected error.