Skip to content

List who can open the dashboard

Lists the people who can sign in to this brand's dashboard, as the team panel on the Workspace page shows them: each address, when it was added, and which one is you.

GET/v1/team
  • Scopeteam:manage
  • Read
  • MCP toolscouty_list_team

Markdown version for your agent

Authorization

Send a Scouty token as a bearer token in the Authorization header. The token needs the team:manage scope, or the call answers 403 insufficient_scope. Tokens and scopes

Authorization: Bearer $SCOUTY_TOKEN

Details

scouty_list_team shows what the team panel on the Workspace page shows. It needs team:manage, which is off unless someone ticked it.

json

{
  "members": [
    { "email": "maya@glow.example", "addedAt": "2026-08-02T10:14:00.000Z", "isYou": true },
    { "email": "sam@glow.example", "addedAt": "2026-09-11T16:40:00.000Z", "isYou": false }
  ]
}

Errors

A refusal answers { "error": { "code", "message" } }. Branch on code; the message is for a person. Every error and its fix

Statuserror.codeMeaning
401 Unauthorizedmissing_token invalid_token token_revoked token_expired token_orphanedNo token, or one that is not recognized, revoked or expired.
403 Forbiddeninsufficient_scope wrong_principalThe token does not carry the scope this capability needs.
429 Too Many Requestsrate_limitedToo many requests this minute. Retry-After says how long is left.