LOOMAL

identities.get

Get details of a specific identity

Key type: Platform (lopk-)

Get full details of a specific agent identity.

Parameters

NameTypeRequiredDescription
identityIdstringYesIdentity ID

Example

Orchestrator: "Show me details for the sales agent"

-> identities.get({ identityId: "id-abc123" })

Returns

{
  "identityId": "id-abc123",
  "name": "Sales Agent",
  "type": "INBOX",
  "email": "sales-x8k2m@mailgent.dev",
  "scopes": ["mail:read", "mail:send"],
  "apiKeyPrefix": "loid-a3f91b00",
  "usageCount": 42,
  "lastUsedAt": "2026-04-06T10:00:00.000Z",
  "createdAt": "2026-03-01T10:00:00.000Z"
}

REST Equivalent

GET /v0/platform/identities/:identityId

On this page