Permet de créer un groupe selon le nom passé en paramètre. Au retour on obtient l’ID du nouveau groupe créé.
Schéma XML en entrée :
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<cApiGroup>
<Result>
<ResultState></ResultState>
<ResultDetail></ResultDetail>
</Result>
<CieID></CieID>
<ApiID></ApiID>
<ID></ID>
<Name></Name>
</cApiGroup>
</soap:Body>
</soap:Envelope>
Schéma XML en sortie :
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<cApiGroup>
<Result>
<ResultState>SUCCESS</ResultState>
<ResultDetail></ResultDetail>
</Result>
<CieID></CieID>
<ApiID></ApiID>
<ID></ID>
<Name></Name>
</cApiGroup>
</soap:Body>
</soap:Envelope>