GET
/
auth_me
curl --request GET \
  --url https://api.public.chatnode.ai/v1/auth_me \
  --header 'Authorization: Bearer <token>'
{
  "id": "90",
  "name": "Default Team",
  "slug": "default-team"
}

Authorizations

Authorization
string
header
required

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

Response

200
application/json
Authenticate Me response.
id
integer
required

The unique identifier for the team associated with the api key.

Example:

"90"

name
string

The name of the team associated with the api key.

Example:

"Default Team"

slug
string

The slug of the team associated with the api key.

Example:

"default-team"