

The "who am i?" endpoint returns information about the current user. Use this to verify your API key, and see your team memberships.
admin: true in the response. They have full access to all private & archived datasets.| Authorization | API key. | string | Optional |
| 200 | Returns JSON object, or null if not logged in. |
{
// My user ID:
"id": 382,
// My identity:
"title": "Stevie Spreadsheets",
"email": "[email protected]",
// If this is true, memberships is redundant.
"admin": false,
// The list of teams IDs I am a member of,
// granting control over their datasets:
"memberships": [
"ab123",
"59m9r",
"tm123",
]
}