Minform · Pipedream API

Home/Me

Me API

Identity and workspace context for the current access token.

GEThttps://minform.io/api/pipedream/me

Verifies 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.

Headers

HeaderRequiredDescription
AuthorizationYesBearer <access_token>

Example response

{
  "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_..."
  }
}
FieldTypeDescription
idstringUser id (Firebase uid)
emailstring | nullAccount email
namestring | nullDisplay name
picturestring | nullAvatar URL
scopesstring[]Scopes on this token
spaces{ name, slug }[]Workspaces the user is a member of
pipedream.client_idstringOAuth client that issued the token

Errors

StatusWhen
401Missing/invalid token or not a Pipedream JWT
500Server error