Skip to content

Who am I — the signed-in user

GET
/v1/me
curl --request GET \
--url https://beta-api.plune.ai/v1/me \
--cookie plune_session=<plune_session>

The current session user (id, email, role, display name). The dashboard reads it to show the account.

The signed-in user

Media type application/json
object
userId
required
string format: uuid
email
required
string format: email
name
required

The display name (B8-team T3) — what every screen shows where a row names this person, in place of the address. null until given on Settings → General.

string
nullable <= 100 characters
role
required

What this account is allowed to be, e.g. user or owner. Open-ended: new roles appear without a client release.

string
Example
{
"userId": "u-shop",
"email": "[email protected]",
"role": "user",
"name": "Olena Kovalenko"
}

No / invalid session

Session valid but the user no longer exists

Media type application/json
object
error
required
string
Example generated
{
"error": "example"
}