GET
/
v2
/
users
List all users viewable by the current actor
curl --request GET \
  --url https://api.pelanor.io/v2/users \
  --header 'Authorization: Bearer <token>'
{
  "users": [
    {
      "email": "<string>",
      "name": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200
application/json

A successful response.

The response is of type object.