Skip to main content
GET
/
me
Get current member information
curl --request GET \
  --url https://app.concretehq.com/api/v1/me \
  --header 'Authorization: Bearer <token>'
{
  "publicId": "abc123def456",
  "role": "admin",
  "user": {
    "publicId": "654fed321cba",
    "email": "john@example.com",
    "firstName": "John",
    "lastName": "Doe"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.concretehq.com/llms.txt

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

Authorizations

Authorization
string
header
required

API key authentication using Bearer token format

Response

Current member information

publicId
string
required

Member public ID

Example:

"abc123def456"

role
string
required

Member role in the workspace

Example:

"admin"

user
object
required