Skip to main content
List all organizations associated with a specific user.

GET /users/:id/orgs

Path Parameters

ParameterTypeRequiredDescription
idstringYesThe unique ID or alias of the user.

Response

ParameterTypeDescription
organizationsarrayList of organization objects.

Example

curl -X GET https://api.blobhub.io/v1/users/user_123/orgs
{
  "organizations": [
    {
      "id": "org_456",
      "alias": "acme-corp",
      "name": "Acme Corp"
    }
  ]
}

Identifier

The id parameter accepts a UUID, alias, or me.

Permissions

CallerAccess
SelfAll organizations the user belongs to.
OtherOnly organizations with public visibility.