openapi: 3.0.0 info: title: SAP API version: 1.0.0 servers: - url: http://localhost:8080 paths: /rfc/CRM_IC_SCRIPTING_GETSURVEYLANG: post: tags: - CRM_IC_SCRIPTING_PERSIST summary: Get languages available for a given survey ID. operationId: /rfc/CRM_IC_SCRIPTING_GETSURVEYLANG requestBody: content: application/json: schema: properties: SURVEYID: type: string maxLength: 32 description: Survey ID LANGUAGES: type: array items: type: object properties: LANGUAGE_KEY: type: string maxLength: 2 description: Version Number Component required: - SURVEYID responses: '200': description: OK content: application/json: schema: properties: LANGUAGES: type: array items: type: object properties: LANGUAGE_KEY: type: string maxLength: 2 description: Version Number Component '400': description: Bad request. 5XX: description: Unexpected error.