cURL
curl --request GET \ --url https://app.concretehq.com/api/v1/me \ --header 'Authorization: Bearer <token>'
{ "publicId": "abc123def456", "role": "admin", "user": { "publicId": "654fed321cba", "email": "[email protected]", "firstName": "John", "lastName": "Doe" } }
Get information about the currently authenticated member
API key authentication using Bearer token format
Current member information
Member public ID
"abc123def456"
Member role in the workspace
"admin"
Show child attributes
User public ID
"654fed321cba"
User email address
"[email protected]"
User first name
"John"
User last name
"Doe"