Skip to main content
GET
/
user
/
collaborators
List collaborators
curl --request GET \
  --url https://app.myhero.so/user/collaborators \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "fbUid": "<string>",
      "profile": {
        "email": "jsmith@example.com",
        "firstName": "<string>",
        "lastName": "<string>",
        "pictureUrl": "<string>",
        "avatarId": "<string>"
      }
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://developers.myhero.so/llms.txt

Use this file to discover all available pages before exploring further.

Returns all users who share at least one organization or workspace with the authenticated user. Each collaborator is returned as a public-safe CollaboratorUser (Firebase UID + profile only).

Authorizations

Authorization
string
header
required

HERO personal access token

Response

200 - application/json

200 response

data
object[] | null
required