Team Members API

The Team Members API allows you to programmatically retrieve the members and permissions associated with your Hosted Graphite team.

GET /team/members/

Returns a list of users associated with your team, and their respective permissions.

Success

Example JSON response:

{
  "total_users": 2,
  "users": [
    {
      "user": "[email protected]",
      "permission": "Team Manager"
    },
    {
      "user": "[email protected]",
      "permission": "Read and Write"
    }
  ]
}

Curl example:

Additional routes for this (create, update, delete) are currently on our development roadmap!

Last updated