queues
ticket
ticket-unread-count
ticketMessage
user
Get current user
GET
/
users
/
me
/
session
curl --request GET \
--url https://core.api.ravennahq.com/api/users/me/session \
--header 'x-ravenna-api-token: <api-key>'
{
"id": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"email": "<string>",
"image": "<string>",
"slackTeamId": "<string>",
"slackUserId": "<string>",
"slackRealName": "<string>",
"slackImageUrl": "<string>",
"emailVerified": "<string>",
"defaultWorkspaceId": "<string>",
"isGuestCreated": true,
"isBot": true,
"createdAt": "<string>",
"auth0Id": "<string>",
"updatedAt": "<string>",
"workspaceMemberships": [
{
"workspaceId": "<string>",
"role": "<string>"
}
],
"organizationMemberships": [
{
"organizationId": "<string>",
"role": "<string>"
}
]
}
Authorizations
Response
200
application/json
Successful response
The response is of type object
.
curl --request GET \
--url https://core.api.ravennahq.com/api/users/me/session \
--header 'x-ravenna-api-token: <api-key>'
{
"id": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"email": "<string>",
"image": "<string>",
"slackTeamId": "<string>",
"slackUserId": "<string>",
"slackRealName": "<string>",
"slackImageUrl": "<string>",
"emailVerified": "<string>",
"defaultWorkspaceId": "<string>",
"isGuestCreated": true,
"isBot": true,
"createdAt": "<string>",
"auth0Id": "<string>",
"updatedAt": "<string>",
"workspaceMemberships": [
{
"workspaceId": "<string>",
"role": "<string>"
}
],
"organizationMemberships": [
{
"organizationId": "<string>",
"role": "<string>"
}
]
}