Get organizations

Get organizations

get

List all organizations for a user. This function is only available through a JWT token.

Authorizations
Path parameters
userIdintegerRequired

User ID

Responses
200
OK
application/json
Responseall of
get
GET /v1/api/users/{userId}/organizations HTTP/1.1
Host: studio.edgeimpulse.com
x-api-key: YOUR_API_KEY
Accept: */*
200

OK

{
  "success": true,
  "error": "text",
  "organizations": [
    {
      "id": 1,
      "name": "text",
      "logo": "https://usercdn.edgeimpulse.com/logos/1.jpg",
      "headerImg": "https://usercdn.edgeimpulse.com/leaders/1.jpg",
      "showHeaderImgMask": true,
      "users": [
        {
          "id": 1,
          "username": "janjongboom",
          "name": "Jan Jongboom",
          "email": "[email protected]",
          "photo": "https://usercdn.edgeimpulse.com/photos/1.jpg",
          "created": "2019-08-31T17:32:28Z",
          "lastSeen": "2019-08-31T17:32:28Z",
          "staffInfo": {
            "isStaff": true,
            "hasSudoRights": true,
            "companyName": "text"
          },
          "pending": true,
          "jobTitle": "Software Engineer",
          "permissions": [
            "admin:infra:disallowedEmailDomains:write"
          ],
          "companyName": "Edge Impulse Inc.",
          "activated": true,
          "mfaConfigured": true,
          "stripeCustomerId": "text",
          "hasPendingPayments": true,
          "tier": "free",
          "idps": [
            "text"
          ],
          "added": "2019-08-31T17:32:28Z",
          "role": "admin",
          "projectCount": 1,
          "datasets": [
            "text"
          ],
          "lastAccessToOrganization": "2025-06-21T05:28:32.381Z",
          "lastOrganizationProjectAccessed": 1
        }
      ],
      "isDeveloperProfile": true,
      "whitelabelId": 1,
      "whitelabelName": "text",
      "projects": [
        {
          "id": 1,
          "name": "Water hammer detection",
          "description": "text",
          "created": "2019-07-21T17:32:28Z",
          "owner": "text",
          "lastAccessed": "2019-07-21T17:32:28Z",
          "lastModified": "2019-07-21T17:32:28Z",
          "lastModificationDetails": "Data sample added",
          "logo": "text",
          "ownerUserId": 1,
          "ownerOrganizationId": 1,
          "ownerAvatar": "text",
          "ownerIsDeveloperProfile": true,
          "developerProfileUserId": 1,
          "collaborators": [
            {
              "id": 1,
              "username": "janjongboom",
              "name": "Jan Jongboom",
              "email": "[email protected]",
              "photo": "https://usercdn.edgeimpulse.com/photos/1.jpg",
              "created": "2019-08-31T17:32:28Z",
              "lastSeen": "2019-08-31T17:32:28Z",
              "staffInfo": {
                "isStaff": true,
                "hasSudoRights": true,
                "companyName": "text"
              },
              "pending": true,
              "jobTitle": "Software Engineer",
              "permissions": [
                "admin:infra:disallowedEmailDomains:write"
              ],
              "companyName": "Edge Impulse Inc.",
              "activated": true,
              "mfaConfigured": true,
              "stripeCustomerId": "text",
              "hasPendingPayments": true,
              "tier": "free",
              "idps": [
                "text"
              ],
              "isOwner": true
            }
          ],
          "labelingMethod": "single_label",
          "metadata": {},
          "dataExplorerScreenshot": "text",
          "isEnterpriseProject": true,
          "whitelabelId": 1,
          "whitelabelName": "text",
          "tags": [
            "FOMO",
            "beers"
          ],
          "category": "Accelerometer",
          "license": "Apache-2.0",
          "tier": "free",
          "hasPublicVersion": true,
          "isPublic": true,
          "allowsLivePublicAccess": true,
          "indPauseProcessingSamples": true,
          "publicProjectListed": true,
          "deletedDate": "2025-06-21T05:28:32.381Z",
          "fullDeletionDate": "2025-06-21T05:28:32.381Z",
          "scheduledFullDeletionDate": "2025-06-21T05:28:32.381Z"
        }
      ],
      "trialId": 1,
      "trialExpiredDate": "2025-06-21T05:28:32.381Z",
      "trialUpgradedDate": "2025-06-21T05:28:32.381Z",
      "created": "2025-06-21T05:28:32.381Z",
      "contractStartDate": "2025-06-21T05:28:32.381Z",
      "deletedDate": "2025-06-21T05:28:32.381Z"
    }
  ]
}

Last updated

Was this helpful?