Minform · Pipedream API
Identity and workspace context for the current access token.
https://minform.io/api/pipedream/meVerifies the Pipedream JWT and returns the Firebase user profile, granted scopes, workspaces the user belongs to, and the OAuth client id. Useful as a connection test after OAuth.
| Header | Required | Description |
|---|---|---|
Authorization | Yes | Bearer <access_token> |
{
"id": "firebaseUid...",
"email": "user@example.com",
"name": "Jane Doe",
"picture": "https://...",
"scopes": ["read:forms", "read:submissions"],
"spaces": [
{ "name": "Acme Workspace", "slug": "acme" }
],
"pipedream": {
"client_id": "pd_client_..."
}
}| Field | Type | Description |
|---|---|---|
id | string | User id (Firebase uid) |
email | string | null | Account email |
name | string | null | Display name |
picture | string | null | Avatar URL |
scopes | string[] | Scopes on this token |
spaces | { name, slug }[] | Workspaces the user is a member of |
pipedream.client_id | string | OAuth client that issued the token |
| Status | When |
|---|---|
| 401 | Missing/invalid token or not a Pipedream JWT |
| 500 | Server error |