getListItems
Gets the possible list values for a list ID.
Parameters
listId is the ID of the list to retrieve.
Returns
An array of ListItems is returned.
Errors
- ListDoesNotExistException
- The list ID does not exist or the user does not have access to the module.
- InvalidArgumentException
- The list ID is invalid.
Sample request
<soapenv:Envelope
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ws="http://ws.tririga.com">
<soapenv:Body>
<ws:getListItems>
<ws:listId>103053</ws:listId>
</ws:getListItems>
</soapenv:Body>
</soapenv:Envelope>
Sample response
<soap:Envelope
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soap:Body>
<getListItemsResponse xmlns="http://ws.tririga.com">
<out>
<ns1:ListItem xmlns:ns1="http://dto.ws.tririga.com">
<id xmlns="http://dto.ws.tririga.com">2007995</id>
<languageId xmlns="http://dto.ws.tririga.com">1</languageId>
<sequenceNumber xmlns="http://dto.ws.tririga.com">0</sequenceNumber>
<value xmlns="http://dto.ws.tririga.com">AMEX</value>
</ns1:ListItem>
<ns1:ListItem xmlns:ns1="http://dto.ws.tririga.com">
<id xmlns="http://dto.ws.tririga.com">2007996</id>
<languageId xmlns="http://dto.ws.tririga.com">1</languageId>
<sequenceNumber xmlns="http://dto.ws.tririga.com">0</sequenceNumber>
<value xmlns="http://dto.ws.tririga.com">Master Card</value>
</ns1:ListItem>
<ns1:ListItem xmlns:ns1="http://dto.ws.tririga.com">
<id xmlns="http://dto.ws.tririga.com">2007997</id>
<languageId xmlns="http://dto.ws.tririga.com">1</languageId>
<sequenceNumber xmlns="http://dto.ws.tririga.com">0</sequenceNumber>
<value xmlns="http://dto.ws.tririga.com">VISA</value>
</ns1:ListItem>
</out>
</getListItemsResponse>
</soap:Body>
</soap:Envelope>