Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.firstresonance.io/llms.txt

Use this file to discover all available pages before exploring further.

Overview

The bare-minimum query to verify your token and discover which tenant you’re in. Use case group: Admin & User

Query

query Me {
  currentUser {
    id
    name
    email
    organization { id domain }
  }
}

Variables

{}

Sample response

{
  "data": {
    "currentUser": {
      "id": 42,
      "name": "Ada Lovelace",
      "email": "ada@acme.com",
      "organization": { "id": 7, "domain": "acme.com" }
    }
  }
}

Notes

Run this first when integrating a new client — it confirms auth, the right org, and the user’s identity in one round trip.