Skip to content

Current user and tenant memberships

GET
/v1/me
curl --request GET \
--url https://api.fromenance.com/v1/me \
--cookie fromenance.session_token=<fromenance.session_token>

Me

Media typeapplication/json
object
user
required
object
id
required
string
email
required
string
name
required
string | null
platform
required
boolean
memberships
required
Array<object>
object
membership_id
required
string
tenant_id
required
string
tenant_slug
required
string
tenant_name
required
string
role
required
string
Examplegenerated
{
"user": {
"id": "example",
"email": "example",
"name": "example"
},
"platform": true,
"memberships": [
{
"membership_id": "example",
"tenant_id": "example",
"tenant_slug": "example",
"tenant_name": "example",
"role": "example"
}
]
}