Part3 Developers

Organizations list

GET /organization

List organizations

GET
/organization
AuthorizationBearer <token>

In: header

Query Parameters

cursor?string

Cursor for the next page. Pass back nextCursor from a prior response.

limit?string

Page size, 1–50 (default 20).

sortBy?string

Sort field. createdAt (default) for tenure; lastActivity for "where work is happening"; activeProjects for size; name for alphabetical exports.

Value in"name" | "activeProjects" | "lastActivity" | "createdAt"
sortOrder?string

Sort direction. Default desc.

Value in"asc" | "desc"
search?string

Substring match on organization name (case-insensitive).

Lengthlength <= 500
include?string

Comma-separated optional fields. Supported: members (inlines the full member list + pending invitations on each row), billingDetails (adds billingLimit and billingLinkedLimit), features (adds the 11 feature* boolean fields).

Response Body

application/json

application/json

curl -X GET "https://api.part3.io/v1/organization"
{
  "data": [
    {
      "uid": "org_8a1b2c3d4e",
      "name": "Stanford Partners",
      "address": "500 King St W, Toronto, ON",
      "phone": "+1 416-555-0192",
      "activeProjects": 14,
      "archivedProjects": 7,
      "billingPlan": "pro",
      "createdAt": "2024-06-12T09:00:00Z",
      "lastActivity": "2026-04-22T11:00:00Z",
      "members": [
        {
          "userId": "user_99a8b7c6d5",
          "name": "Anika Patel",
          "email": "anika@example.com",
          "role": "admin",
          "active": true,
          "enabledMfa": true
        }
      ],
      "invitations": [
        {
          "email": "jordan@example.com",
          "name": "Jordan Lee",
          "role": "member"
        }
      ],
      "billingLimit": 25,
      "billingLinkedLimit": null,
      "featureReport": true,
      "featureSubmittal": true,
      "featureRfi": true,
      "featureInstruction": true,
      "featureDashboard": true,
      "featureChange": false,
      "featureQuote": false,
      "featureCertificate": false,
      "featureProjectGroupAnalytics": false,
      "featureAdminView": false,
      "featureFileSystem": true
    }
  ],
  "nextCursor": null,
  "hasMore": false
}
{
  "error": "Insufficient permissions"
}