up.community.getList
Returns a list of communities supported by Universal Platform.
Parameters
| Type | Name | Required | Description |
| string | apiKey | ✔ | The application key associated with the calling application. |
| string | community | ✔ | Community system name associated with the calling application. |
| string | apiSig | ✔(production) | An MD5 hash of the current request and your secret key, as described in the UP-wsAPI-v1-01-authentication-guide. |
| string | format | | Desired response format. Either XML (default), JSON or PHP serialized (xml, json, php_serial). |
| string | verbose | | Indicates that you want more verbose information about communities, not only their names. |
Example return XML
<?xml version="1.0" encoding="UTF-8"?>
<community_getList_response xmlns="http://platform.converdge.com/" list="true">
<community>mashable</community>
<community>mediapost</community>
</community_getList_response>
<?xml version="1.0"?>
<community_getList_response xmlns="http://platform.converdge.com/" list="true">
<community>
<name>mashable</name>
<full_name>Mashable Community</full_name>
<uri>http://my.mashable.com</uri>
</community>
<community>
<name>mediapost</name>
<full_name>Mediapost</full_name>
<uri>http://my.mediapost.com</uri>
</community>
</community_getList_response>
Error codes
| Code | Description |
| 1 | Internal error occured. |
| 2 | Method was not provided. |
| 95 | Invalid request signature. |
| 97 | Invalid response format. |
| 99 | Community is not provided. |
| 100 | Invalid api key. |
| 101 | Empty api key. |
| 105 | Service is temporary unavailable. |
| 112 | Method was not found. |