For the complete documentation index, see llms.txt. This page is also available as Markdown.

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": "admin@example.com",
      "permission": "Team Manager"
    },
    {
      "user": "user@example.com",
      "permission": "Read and Write"
    }
  ]
}

Curl example:

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

Last updated