---
title: "Get All Organizations Within Scope"
method: GET
path: "/organizations"
tags: ["Organization Management"]
---

# Get All Organizations Within Scope

`GET /organizations`

Gets and returns the all Organizations' profiles.
The authenticated user must have the 'organizations:read' permission.
If the authenticated user is an Operator, they can access any Organizations' profile.
If the authenticated user is a User or an Organization, they can only access the profile of their own Organization.

Args:
    auth_context (BaseAuthContext): The authentication context of the request.

Returns:
    The Organizations' profiles.

## Query parameters

- `limit` integer
- `offset` integer
- `q` string, nullable — A search query to limit the Organizations returned by matching on ID, name, or external ID.
- `unfederated` boolean — When true, return only standalone Organizations (those not in any federation).

## Response `200`

Response

- V1OrganizationDetailResponse[]
  - `id` string, uuid, required — The unique identifier of the Organization.
  - `name` string, nullable, required — The name of the Organization.
  - `domain_name` string, nullable, required — The domain name of the Organization.
  - `type` 'neobank' | 'community_bank' | 'credit_union' | 'regional_bank' | 'national_bank' | 'fintech' | 'smb_lender' | 'merchant_cash_advanced' | 'processor' | 'infrastructure' | 'other', required
  - `external_id` string, nullable, required — An external identifier for referencing the Organization using the ID from a namespace in an external system.
  - `webhooks_version` '0.8' | '1.0' | '2.0' | '2.0', required
  - `federation` V1FederationResponse, required — Represents a federation response.
    - `id` string, uuid, required — The unique identifier of the federation.
    - `name` string, nullable — The name of the federation.
    - `contact` V1ContactResponse — Represents a contact response.
      - `id` string, uuid, required — The unique identifier of the contact.
      - `name` string, nullable — The name of the contact.
      - `email` string, nullable — The email of the contact.
  - `applications` V1ApplicationResponse[], required — The Applications belonging to the Organization.
    - `id` string, uuid, required — The unique identifier of the application.
    - `name` string, nullable — The name of the application.
    - `type` 'sandbox' | 'production', required
    - `enabled` boolean, required — Whether or not the application is enabled for access via the API and Console.
    - `external_id` string, nullable — An identifier for referencing the application in an external namespace.
  - `lien_filing_correspondence_email` string, email, nullable — The email address for lien filing correspondence.
  - `lien_filing_secured_party` V1LienFilingOrganizationSecuredParty — Describes an organization acting as a secured party in a lien filing. This model is tailored to encapsulate organizations with a secured interest in the context of a lien, detailing aspects relevant to their secured party status.
    - `mailing_address` string, nullable — The mailing address for the lien filing party, excluding city, state, and postal code.
    - `city` string, nullable — The city of the lien filing party's mailing address.
    - `state` 'AL' | 'AK' | 'AZ' | 'AR' | 'CA' | 'CO' | 'CT' | 'DE' | 'DC' | 'FL' | 'GA' | 'HI' | 'ID' | 'IL' | 'IN' | 'IA' | 'KS' | 'KY' | 'LA' | 'ME' | 'MD' | 'MA' | 'MI' | 'MN' | 'MS' | 'MO' | 'MT' | 'NE' | 'NV' | 'NH' | 'NJ' | 'NM' | 'NY' | 'NC' | 'ND' | 'OH' | 'OK' | 'OR' | 'PA' | 'RI' | 'SC' | 'SD' | 'TN' | 'TX' | 'UT' | 'VT' | 'VA' | 'WA' | 'WV' | 'WI' | 'WY' | 'PR' | 'VI' | 'AE' | 'AA' | 'AP' | 'GU' | 'AS'
    - `postal_code` string, nullable — The postal code of the lien filing party's mailing address.
    - `masked` boolean, nullable — A flag to indicate if the secured party should be masked when filing a lien.
    - `is_assignor` boolean, nullable — Whether the secured party is the assignor of the lien.
    - `organization_name` string, nullable — The name of the organization involved in the lien filing.
    - `organization_type` 'SOLE_PROPRIETORSHIP' | 'GENERAL_PARTNERSHIP' | 'LLC' | 'LLP' | 'LLLP' | 'LP' | 'C_CORPORATION' | 'S_CORPORATION' | 'B_CORPORATION' | 'NONPROFIT' | 'COOPERATIVE' | 'TRUST' | 'PROFESSIONAL_ASSOCIATION' | 'PROFESSIONAL_CORPORATION' | 'TRADE_NAME' | 'BANK' | 'CREDIT_UNION' | 'INSURANCE' | 'OTHER'
    - `type` 'ORGANIZATION', required — Specifies the party type as 'Organization' for the context of this lien filing, indicating that the party is an organization or entity rather than a person.
  - `lien_filing_collateral_statement` string, nullable — The collateral statement for lien filing.
  - `lien_filing_collateral_statement_templates` V1LienFilingCollateralStatementTemplate[] — The list of collateral statement templates for lien filing.
    - `title` string, required — The title of the collateral statement option.
    - `text` string, required — The text of the collateral statement option.

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/baselayer/apis/baselayer-api-service.md) · [All operations](https://skmtc.net/baselayer/apis/baselayer-api-service/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/baselayer/baselayer-api-service/revisions/0cc89938bc26/schema)
