MediaPost Social Network

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

  • Non-verbose mode:
<?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>
  • Verbose mode
<?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
1Internal error occured.
2Method was not provided.
95Invalid request signature.
97Invalid response format.
99Community is not provided.
100Invalid api key.
101Empty api key.
105Service is temporary unavailable.
112Method was not found.