Fluxmail

Get the authenticated member

Reference for GET /api/v1/me.

GET /api/v1/me

Reference for GET /api/v1/me.

Authentication

Pass a Fluxmail member session or API key as a bearer token. API keys apply their mailbox scope and permissions to the request.

Request

curl 'http://localhost:8977/api/v1/me' \
  -H "Authorization: Bearer $FLUXMAIL_API_KEY"

This endpoint has no parameters or request body.

Responses

StatusDescriptionContent type
200Successapplication/json
400Invalid requestapplication/json
401Authentication requiredapplication/json
403Permission deniedapplication/json
404Not foundapplication/json
409Conflictapplication/json
413Request body too largeapplication/json
429Too many attemptsapplication/json

200 response

{
  "type": "object",
  "properties": {
    "data": {
      "nullable": true
    }
  }
}

Last updated