openapi: 3.0.0 info: title: SAP API version: 1.0.0 servers: - url: http://localhost:8080 paths: /rfc/CRM_CIC_BROADCAST_GET_ORG_UNIT: post: tags: - IC_BROADCAST summary: Retrieves CIC users operationId: /rfc/CRM_CIC_BROADCAST_GET_ORG_UNIT requestBody: content: application/json: schema: properties: OBJID: type: integer format: int64 description: Object ID USERSTABLE: type: array items: type: object properties: USERID: type: string maxLength: 12 description: User Name in User Master Record USERNAME: type: string maxLength: 50 description: Character field length 50 required: - OBJID responses: '200': description: OK content: application/json: schema: properties: USERSTABLE: type: array items: type: object properties: USERID: type: string maxLength: 12 description: User Name in User Master Record USERNAME: type: string maxLength: 50 description: Character field length 50 '400': description: Bad request. 5XX: description: Unexpected error.