Introduction

We are listing the available API endpoints for habitate.io. These can be used to build additional feature and create linked services around your community.

In case you need more help you can get in touch with the team, developer-support at habitate.io

Modify private board members

Endpoint

PUT /api/v1/boards/{board_id}/members

Url path variables

Possible values Comments
board_id The id of the board.

Body parameters

Name Type Req? Comments
member_changes Map Y Map of user key as MSID with value as boolean. true to provide access to user, false to remove access to the board.

sample payload

{
  "member_changes": {
    "101.N8vf3FFtbXIhQMAkCve320FaG": true,
    "555.37AInaiO4R5UiGnuuNwjP07sw": true,
    "222.NHJSm4JzQWsLYIIuJmGTK2moL": false
  }
}

Response parameters

{
  "message": "OK"
}
Additional Notes

You should also be adding admins to private boards if they want to have the same experience as a member.