> ## Documentation Index
> Fetch the complete documentation index at: https://humanity-eaeda8f6.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Feeds · Authorizations

<Callout>
  **SDK equivalent**

  ```ts theme={null}
  const feed = await sdk.pollAuthorizationUpdates(accessToken, {
    status: 'revoked',
    updatedSince,
  });
  ```
</Callout>

Monitor authorization lifecycle events. Filter by `status=active|revoked`, apply `updated_since` checkpoints, and page with `limit`.

Each item contains:

* `authorization_id`, `organization_id`, and app-scoped user identifiers
* `status` transitions (`active`/`revoked`)
* `updated_at` timestamps to help you enforce SLAs downstream

Use this feed to drive entitlement revocations in your product or to reconcile discrepancies with Humanity’s source of truth.
