The following SOAP methods are provided specifically for the evaluation and configuration of scoring points and scoring groups.
getGroups
Query Scoring Groups
ScoringGroupInformation[] getGroups( int mandator_id = 0 )
Details
Parameters
- int mandator_id: Id of the client for which the groups are to be queried. If 0 is transferred here, the global scoring groups are returned.
Return value
- ScoringGroupInformation[]: List of objects with the following attributes:
- int id: Id of the scoring group
- string name: Name of the scoring group
- int mandator_id: Id of the client in which the scoring group exists
Please note that global users who have switched to a client via the system interface are considered to be client users from that point on, and must set the parameter mandator_id
Required rights
Evaluate Scoring
Use
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:scor="https://scnem.com/soap.php/soap/scoring">
<soapenv:Header/>
<soapenv:Body>
<scor:getGroups>
<mandator_id>MANDATOR_ID</mandator_id>
</scor:getGroups>
</soapenv:Body>
</soapenv:Envelope>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="https://scnem.com/soap.php/soap/scoring">
<SOAP-ENV:Body>
<ns1:getGroupsResponse>
<getGroupsResult>
<item>
<id>SCORING_GROUP_ID</id>
<name>SCORING_GROUP_NAME</name>
<mandator_id>MANDATOR_ID</mandator_id>
</item>
[...]
</getGroupsResult>
</ns1:getGroupsResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>