---
title: "Get current organization"
method: GET
path: "/org"
tags: ["Organizations"]
---

# Get current organization

`GET /org`

Retrieve details about the authenticated user's organization.

**Overview:**

This endpoint returns the organization document for the current user's org, including profile data and configuration.

**Response Includes:**

- Organization profile (registeredName, shortName, contactEmail, domain)
- Account type
- Onboarding status
- Permanent address
- Creation and modification timestamps

**Use Cases:**

- Organization profile pages
- Settings and configuration screens

## Response `200`

Organization details retrieved successfully

- Organization
  - `_id` string, ObjectId, required — Unique organization identifier
  - `slug` string, required — Unique slug for the organization
  - `registeredName` string, required — Registered name
  - `shortName` string — Short name or display name
  - `domain` string, required — Organization domain
  - `contactEmail` string, email, required — Contact email address
  - `accountType` 'individual' | 'business', required — Type of account
  - `permanentAddress` Address
    - `_id` string, ObjectId — Optional address document id
    - `addressLine1` string — Address line 1
    - `city` string — City
    - `state` string — State/Province
    - `postCode` string — Postal/ZIP code
    - `country` string — Country
  - `onBoardingStatus` 'configured' | 'notConfigured' | 'skipped', required — Onboarding status
  - `isDeleted` boolean, required — Soft delete flag
  - `__v` integer, required — Document version (MongoDB)
  - `createdAt` string, date-time, required — Creation timestamp (ISO 8601)
  - `updatedAt` string, date-time, required — Last update timestamp (ISO 8601)

## Other responses

- `401` — Unauthorized - Valid bearer token required
- `404` — Organization not found - User's organization does not exist
- `500` — Internal server error - Database query failure

---

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