This service allows you to quickly check which boards can a user post to and whether user has logins/quota necessary. This can be used to prepare a list of boards user can post to in partner system.
The force posting tag represents the state of the board that admin chose for the selected user. It can be:
no - board should not be preselected and selectable
select - board should be preselected with an un-select option
force - board should be preselected with no un-select option
This corresponds to the following idibu option. We request that you incorporate those options into your integration if you are using this webservice.
Example
Posted data
https://ws.idibu.com/ws/rest/v1/users/[user id]/portals-available?hash=[your_hash]
Response
<?xml version="1.0" encoding="UTF-8"?>
<idibu generator="idibu" version="1.0">
<response>
<portals>
<portal id="1504">
<name>Facebook</name>
<quota></quota>
<remaining_quota>
</remaining_quota>
<has_logins>yes</has_logins>
<force_posting>select</force_posting>
</portal>
<portal id="517">
<name>idibu Developer Board</name>
<quota>0</quota>
<remaining_quota>0</remaining_quota>
<has_logins>yes</has_logins>
<force_posting>no</force_posting>
</portal>
</portals>
</response>
<status>success</status>
</idibu>