# List accessible organization workspaces

> **Required Permission:** `base.organization.management.list` Retrieves a paginated list of workspaces accessible to the authenticated user. This includes filtering and sorting options to enable efficient navigation and management across multiple workspaces

Source: https://docs.applivery.com/en/api/platform/organization/get-organizations/

---

# List accessible organization workspaces

**Required Permission:** `base.organization.management.list`

Retrieves a paginated list of workspaces accessible to the authenticated user. This includes filtering and sorting options to enable efficient navigation and management across multiple workspaces

No request body.

**Request:** `GET https://api.applivery.io/v1/organizations`

## OpenAPI specification

Machine-readable endpoint definition (dereferenced OpenAPI operation).

```json
{
  "method": "GET",
  "path": "/organizations",
  "baseUrl": "https://api.applivery.io/v1",
  "servers": [
    {
      "url": "https://api.applivery.io/v1"
    }
  ],
  "security": [
    {
      "ApiKeyAuth": []
    }
  ],
  "auth": {
    "type": "http",
    "scheme": "bearer",
    "header": "Authorization",
    "format": "Bearer <token>"
  },
  "permission": "base.organization.management.list",
  "parameters": [
    {
      "name": "page",
      "description": "Page number for pagination controls starting at one enabling navigation through large organization collections efficiently.",
      "in": "query",
      "required": false,
      "schema": {
        "type": "integer",
        "minimum": 1,
        "description": "Page number for pagination controls starting at one enabling navigation through large organization collections efficiently.",
        "example": 1
      }
    },
    {
      "name": "limit",
      "description": "Maximum number of organizations returned per page controlling result set size for pagination and performance optimization.",
      "in": "query",
      "required": false,
      "schema": {
        "type": "integer",
        "minimum": 1,
        "maximum": 10000,
        "description": "Maximum number of organizations returned per page controlling result set size for pagination and performance optimization.",
        "example": 20
      }
    },
    {
      "name": "sort",
      "description": "Sort field and direction for ordering organization list results enabling customized data presentation and filtering.",
      "in": "query",
      "required": false,
      "schema": {
        "type": "string",
        "pattern": "^[\\w.]*((:asc)|(:desc))?$",
        "description": "Sort field and direction for ordering organization list results enabling customized data presentation and filtering.",
        "example": "name:asc"
      }
    },
    {
      "name": "name",
      "description": "Organization display name shown throughout dashboard interface for workspace identification and administrative purposes across all features.",
      "in": "query",
      "required": false,
      "schema": {
        "type": "string",
        "maxLength": 128,
        "description": "Organization display name shown throughout dashboard interface for workspace identification and administrative purposes across all features.",
        "example": "Acme Corporation"
      }
    },
    {
      "name": "slug",
      "description": "URL-friendly workspace identifier enabling human-readable access paths and custom branding in dashboard URLs and API endpoints.",
      "in": "query",
      "required": false,
      "schema": {
        "type": "string",
        "maxLength": 128,
        "description": "URL-friendly workspace identifier enabling human-readable access paths and custom branding in dashboard URLs and API endpoints.",
        "example": "acme-corp"
      }
    }
  ],
  "responses": {
    "200": {
      "content": {
        "application/json": {
          "schema": {
            "type": "object",
            "properties": {
              "status": {
                "type": "boolean"
              },
              "data": {
                "type": "object",
                "properties": {
                  "items": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "pattern": "^[a-fA-F0-9]{24}$",
                          "description": "Organization unique identifier used for database references, API responses, and internal system operations throughout platform.",
                          "example": "698f42e5457fafa13d088794"
                        },
                        "name": {
                          "type": "string",
                          "maxLength": 128,
                          "description": "Organization display name shown throughout dashboard interface for workspace identification and administrative purposes across all features.",
                          "example": "Acme Corporation"
                        },
                        "slug": {
                          "type": "string",
                          "pattern": "^[a-z0-9][a-z0-9-]+[a-z0-9]$",
                          "minLength": 3,
                          "maxLength": 128,
                          "description": "URL-friendly workspace identifier enabling human-readable access paths and custom branding in dashboard URLs and API endpoints.",
                          "example": "acme-corp"
                        },
                        "webSiteUrl": {
                          "type": "string",
                          "maxLength": 256,
                          "description": "Public website URL for organization providing external reference link displayed in workspace settings and support communications.",
                          "example": "https://www.acmecorp.com"
                        },
                        "type": {
                          "type": "string",
                          "enum": [
                            "personal",
                            "company"
                          ],
                          "description": "Organization classification type defining workspace scope and administrative boundaries currently limited to company entity type.",
                          "example": "company"
                        },
                        "subscriptions": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "plan": {
                                "type": "string",
                                "pattern": "^[a-fA-F0-9]{24}$",
                                "description": "Subscription plan identifier referencing pricing tier feature set and resource limits for workspace.",
                                "example": "698f42e5457fafa13d088796"
                              },
                              "planCode": {
                                "type": "string",
                                "maxLength": 256,
                                "description": "Human-readable plan code identifying subscription tier for billing and support reference purposes.",
                                "example": "enterprise-annual"
                              },
                              "iniDate": {
                                "type": "string",
                                "format": "date-time",
                                "description": "Subscription start date in ISO format marking beginning of billing cycle and feature access.",
                                "example": "2026-01-01T00:00:00Z"
                              },
                              "endDate": {
                                "type": "string",
                                "format": "date-time",
                                "description": "Subscription end date in ISO format indicating renewal deadline or cancellation effective date.",
                                "example": "2027-01-01T00:00:00Z"
                              },
                              "endedAt": {
                                "type": "string",
                                "format": "date-time",
                                "nullable": true,
                                "description": "Actual subscription termination timestamp when canceled or expired with null indicating active status.",
                                "example": null
                              },
                              "status": {
                                "type": "string",
                                "enum": [
                                  "active",
                                  "canceled",
                                  "past_due",
                                  "expired"
                                ],
                                "description": "Current subscription state indicating payment health and access validity including active canceled past_due expired.",
                                "example": "active"
                              },
                              "metadata": {
                                "type": "object",
                                "properties": {
                                  "limits": {
                                    "type": "object",
                                    "properties": {
                                      "apps": {
                                        "type": "integer",
                                        "minimum": 0
                                      },
                                      "builds": {
                                        "type": "integer",
                                        "minimum": 0
                                      },
                                      "downloads": {
                                        "type": "integer",
                                        "minimum": 0
                                      },
                                      "collaborators": {
                                        "type": "integer",
                                        "minimum": 0
                                      },
                                      "employees": {
                                        "type": "integer",
                                        "minimum": 0
                                      },
                                      "mdmDevices": {
                                        "type": "integer",
                                        "minimum": 0
                                      },
                                      "smartAttributes": {
                                        "type": "integer",
                                        "minimum": 0
                                      },
                                      "locationTrackingTime": {
                                        "type": "integer",
                                        "minimum": 0
                                      },
                                      "mdmAssetsStorageSize": {
                                        "type": "integer",
                                        "minimum": 0
                                      },
                                      "maxBuildRetentionDays": {
                                        "type": "integer",
                                        "minimum": 0
                                      },
                                      "maxBuildsRetainedPerPublication": {
                                        "type": "integer",
                                        "minimum": 0
                                      },
                                      "maxPublicationsPerApp": {
                                        "type": "integer",
                                        "minimum": 0
                                      },
                                      "mdmAutomationRules": {
                                        "type": "integer",
                                        "minimum": 0
                                      },
                                      "deviceAudiences": {
                                        "type": "integer",
                                        "minimum": 0
                                      },
                                      "userAudiences": {
                                        "type": "integer",
                                        "minimum": 0
                                      },
                                      "numOtpUsers": {
                                        "type": "integer",
                                        "minimum": 0
                                      },
                                      "maxDepthSegments": {
                                        "type": "integer",
                                        "minimum": 0
                                      },
                                      "maxNumSegments": {
                                        "type": "integer",
                                        "minimum": 0
                                      }
                                    },
                                    "description": "Resource quota limits defining maximum allowed applications builds downloads collaborators and managed devices.",
                                    "example": {
                                      "apps": 50,
                                      "builds": 1000,
                                      "downloads": 100000,
                                      "collaborators": 25,
                                      "employees": 500,
                                      "mdmDevices": 1000
                                    }
                                  },
                                  "allows": {
                                    "type": "object",
                                    "properties": {
                                      "passwordApps": {
                                        "type": "boolean"
                                      },
                                      "loggedApps": {
                                        "type": "boolean"
                                      },
                                      "unlistedApps": {
                                        "type": "boolean"
                                      },
                                      "loggedStores": {
                                        "type": "boolean"
                                      },
                                      "nativeSDK": {
                                        "type": "boolean"
                                      },
                                      "customBranding": {
                                        "type": "boolean"
                                      },
                                      "customDomain": {
                                        "type": "boolean"
                                      },
                                      "ssoLogin": {
                                        "type": "boolean"
                                      },
                                      "changeS3Bucket": {
                                        "type": "boolean"
                                      },
                                      "customS3Bucket": {
                                        "type": "boolean"
                                      },
                                      "appleIpad": {
                                        "type": "boolean"
                                      },
                                      "appleMac": {
                                        "type": "boolean"
                                      },
                                      "appleWatch": {
                                        "type": "boolean"
                                      },
                                      "appleTv": {
                                        "type": "boolean"
                                      },
                                      "androidZeroTouch": {
                                        "type": "boolean"
                                      },
                                      "appleDEP": {
                                        "type": "boolean"
                                      },
                                      "appleVPP": {
                                        "type": "boolean"
                                      },
                                      "serviceAccounts": {
                                        "type": "boolean"
                                      },
                                      "duplicatePolicy": {
                                        "type": "boolean"
                                      },
                                      "mdmAssets": {
                                        "type": "boolean"
                                      },
                                      "advancedLauncher": {
                                        "type": "boolean"
                                      },
                                      "androidAgent": {
                                        "type": "boolean"
                                      },
                                      "aospMdm": {
                                        "type": "boolean"
                                      },
                                      "iosAgent": {
                                        "type": "boolean"
                                      },
                                      "macosAgent": {
                                        "type": "boolean"
                                      },
                                      "macosScripts": {
                                        "type": "boolean"
                                      },
                                      "androidManagedConfigurations": {
                                        "type": "boolean"
                                      },
                                      "appleManagedConfigurations": {
                                        "type": "boolean"
                                      },
                                      "androidRemoteSupport": {
                                        "type": "boolean"
                                      },
                                      "appleRemoteSupport": {
                                        "type": "boolean"
                                      },
                                      "inventory": {
                                        "type": "boolean"
                                      },
                                      "windowsMdm": {
                                        "type": "boolean"
                                      },
                                      "windowsAgent": {
                                        "type": "boolean"
                                      },
                                      "windowsScripts": {
                                        "type": "boolean"
                                      },
                                      "countryAccessControl": {
                                        "type": "boolean"
                                      },
                                      "assistant": {
                                        "type": "boolean"
                                      },
                                      "userAudiences": {
                                        "type": "boolean"
                                      },
                                      "unlimitedBuildRetention": {
                                        "type": "boolean"
                                      },
                                      "policyComposition": {
                                        "type": "boolean"
                                      },
                                      "deviceAudiences": {
                                        "type": "boolean"
                                      },
                                      "certificateProviders": {
                                        "type": "boolean"
                                      },
                                      "otpUsers": {
                                        "type": "boolean"
                                      },
                                      "segments": {
                                        "type": "boolean"
                                      },
                                      "overrideSamlUris": {
                                        "type": "boolean"
                                      }
                                    },
                                    "description": "Feature capability flags indicating which advanced features are enabled for subscription tier.",
                                    "example": {
                                      "customBranding": true,
                                      "ssoLogin": true,
                                      "customS3Bucket": true
                                    }
                                  },
                                  "target": {
                                    "type": "string",
                                    "enum": [
                                      "company",
                                      "personal",
                                      "unknown"
                                    ],
                                    "description": "Subscription plan target indicating resource type being metered such as devices users or builds.",
                                    "example": "company"
                                  },
                                  "type": {
                                    "type": "string",
                                    "enum": [
                                      "standard",
                                      "default",
                                      "unknown",
                                      "mdm",
                                      "custom",
                                      "enterprise"
                                    ],
                                    "description": "Subscription business model type indicating SaaS perpetual or trial licensing arrangement.",
                                    "example": "standard"
                                  },
                                  "periodicity": {
                                    "type": "string",
                                    "enum": [
                                      "m",
                                      "y",
                                      "d",
                                      "-"
                                    ],
                                    "nullable": true,
                                    "description": "Billing cycle frequency defining monthly annual or custom payment intervals with null for one-time.",
                                    "example": "y"
                                  },
                                  "price": {
                                    "type": "integer",
                                    "minimum": 0,
                                    "description": "Base subscription price per billing period in smallest currency unit for chosen plan tier.",
                                    "example": 999900
                                  },
                                  "packagePrice": {
                                    "type": "integer",
                                    "minimum": 0,
                                    "description": "Additional unit price for exceeding included package limits enabling consumption-based billing.",
                                    "example": 500
                                  },
                                  "packageLength": {
                                    "type": "integer",
                                    "minimum": 0,
                                    "description": "Number of units included in base subscription package before additional charges apply.",
                                    "example": 1000
                                  },
                                  "packageTarget": {
                                    "type": "string",
                                    "maxLength": 128,
                                    "description": "Resource type for package-based pricing defining what units are counted for overage charges.",
                                    "example": "devices"
                                  },
                                  "chargeType": {
                                    "type": "string",
                                    "maxLength": 128,
                                    "description": "Billing charge calculation method defining how subscription costs are computed and invoiced.",
                                    "example": "per_unit"
                                  }
                                },
                                "description": "Subscription plan metadata containing feature limits allowed capabilities pricing details and target configuration.",
                                "example": {}
                              },
                              "customer": {
                                "type": "string",
                                "pattern": "^[a-fA-F0-9]{24}$",
                                "description": "Billing customer identifier linking subscription to payment method and invoice records in billing platform.",
                                "example": "698f42e5457fafa13d088797"
                              },
                              "id": {
                                "type": "string",
                                "pattern": "^[a-fA-F0-9]{24}$"
                              },
                              "planDescription": {
                                "type": "string",
                                "maxLength": 128,
                                "description": "Human-readable subscription plan description displayed in dashboard and billing communications.",
                                "example": "Enterprise Plan"
                              },
                              "type": {
                                "type": "string",
                                "enum": [
                                  "standard",
                                  "default",
                                  "unknown",
                                  "mdm",
                                  "custom",
                                  "enterprise"
                                ]
                              },
                              "description": {
                                "type": "string",
                                "maxLength": 256,
                                "description": "Detailed subscription description explaining included features limits and special terms for workspace access.",
                                "example": "Annual enterprise subscription with unlimited devices"
                              },
                              "paymentIntent": {
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "maxLength": 128
                                  },
                                  "secret": {
                                    "type": "string",
                                    "maxLength": 500
                                  },
                                  "status": {
                                    "type": "string",
                                    "maxLength": 500
                                  },
                                  "error": {
                                    "type": "object",
                                    "properties": {
                                      "message": {
                                        "type": "string",
                                        "maxLength": 500
                                      },
                                      "code": {
                                        "type": "string",
                                        "maxLength": 500
                                      },
                                      "declineCode": {
                                        "type": "string",
                                        "maxLength": 500
                                      }
                                    }
                                  }
                                },
                                "description": "Payment processing information including transaction status errors and authentication requirements for subscription.",
                                "example": {
                                  "id": "pi_1234567890",
                                  "secret": "pi_1234567890_secret_abcdefgh",
                                  "status": "succeeded",
                                  "error": {}
                                }
                              }
                            }
                          },
                          "description": "Active and historical subscription records defining workspace access permissions feature entitlements and billing status."
                        },
                        "loginProviders": {
                          "type": "object",
                          "properties": {
                            "dashboard": {
                              "type": "array",
                              "items": {
                                "type": "string",
                                "enum": [
                                  "traditional",
                                  "oidc",
                                  "ldap",
                                  "saml",
                                  "google",
                                  "github",
                                  "bitbucket",
                                  "serviceAccount",
                                  "social",
                                  "otp"
                                ]
                              },
                              "description": "Allowed authentication methods for dashboard access including password Google SSO enabling administrative login security configuration.",
                              "example": [
                                "traditional",
                                "saml"
                              ]
                            },
                            "store": {
                              "type": "array",
                              "items": {
                                "type": "string",
                                "enum": [
                                  "traditional",
                                  "oidc",
                                  "ldap",
                                  "saml",
                                  "google",
                                  "github",
                                  "bitbucket",
                                  "serviceAccount",
                                  "social",
                                  "otp"
                                ]
                              },
                              "description": "Allowed authentication methods for application store access controlling employee login mechanisms and security policies.",
                              "example": [
                                "traditional",
                                "social"
                              ]
                            },
                            "mdm": {
                              "type": "array",
                              "items": {
                                "type": "string",
                                "enum": [
                                  "traditional",
                                  "oidc",
                                  "ldap",
                                  "saml",
                                  "google",
                                  "github",
                                  "bitbucket",
                                  "serviceAccount",
                                  "social",
                                  "otp"
                                ]
                              },
                              "description": "Allowed authentication methods for MDM portal access defining device administrator login options and security requirements.",
                              "example": [
                                "traditional"
                              ]
                            }
                          },
                          "description": "Authentication provider configurations defining allowed login methods for dashboard store and MDM portal access security."
                        },
                        "limits": {
                          "type": "object",
                          "properties": {
                            "apps": {
                              "type": "integer",
                              "minimum": 0
                            },
                            "builds": {
                              "type": "integer",
                              "minimum": 0
                            },
                            "downloads": {
                              "type": "integer",
                              "minimum": 0
                            },
                            "collaborators": {
                              "type": "integer",
                              "minimum": 0
                            },
                            "employees": {
                              "type": "integer",
                              "minimum": 0
                            },
                            "mdmDevices": {
                              "type": "integer",
                              "minimum": 0
                            },
                            "locationTrackingTime": {
                              "type": "integer",
                              "minimum": 0
                            },
                            "mdmAssetsStorageSize": {
                              "type": "integer",
                              "minimum": 0
                            },
                            "maxBuildRetentionDays": {
                              "type": "integer",
                              "minimum": 0
                            },
                            "maxBuildsRetainedPerPublication": {
                              "type": "integer",
                              "minimum": 0
                            },
                            "maxPublicationsPerApp": {
                              "type": "integer",
                              "minimum": 0
                            },
                            "mdmAutomationRules": {
                              "type": "integer",
                              "minimum": 0
                            },
                            "deviceAudiences": {
                              "type": "integer",
                              "minimum": 0
                            },
                            "userAudiences": {
                              "type": "integer",
                              "minimum": 0
                            },
                            "smartAttributes": {
                              "type": "integer",
                              "minimum": 0
                            },
                            "numOtpUsers": {
                              "type": "integer",
                              "minimum": 0
                            },
                            "maxDepthSegments": {
                              "type": "integer",
                              "minimum": 0
                            },
                            "maxNumSegments": {
                              "type": "integer",
                              "minimum": 0
                            }
                          },
                          "description": "Resource quota limits derived from active subscription defining maximum allowed applications builds downloads and devices.",
                          "example": {
                            "apps": 50,
                            "builds": 1000,
                            "downloads": 100000,
                            "collaborators": 25,
                            "employees": 500,
                            "mdmDevices": 1000
                          }
                        },
                        "allows": {
                          "type": "object",
                          "properties": {
                            "passwordApps": {
                              "type": "boolean"
                            },
                            "loggedApps": {
                              "type": "boolean"
                            },
                            "unlistedApps": {
                              "type": "boolean"
                            },
                            "loggedStores": {
                              "type": "boolean"
                            },
                            "nativeSDK": {
                              "type": "boolean"
                            },
                            "customBranding": {
                              "type": "boolean"
                            },
                            "customDomain": {
                              "type": "boolean"
                            },
                            "ssoLogin": {
                              "type": "boolean"
                            },
                            "changeS3Bucket": {
                              "type": "boolean"
                            },
                            "customS3Bucket": {
                              "type": "boolean"
                            },
                            "appleIpad": {
                              "type": "boolean"
                            },
                            "appleMac": {
                              "type": "boolean"
                            },
                            "appleWatch": {
                              "type": "boolean"
                            },
                            "appleTv": {
                              "type": "boolean"
                            },
                            "androidZeroTouch": {
                              "type": "boolean"
                            },
                            "appleDEP": {
                              "type": "boolean"
                            },
                            "appleVPP": {
                              "type": "boolean"
                            },
                            "serviceAccounts": {
                              "type": "boolean"
                            },
                            "duplicatePolicy": {
                              "type": "boolean"
                            },
                            "mdmAssets": {
                              "type": "boolean"
                            },
                            "advancedLauncher": {
                              "type": "boolean"
                            },
                            "androidAgent": {
                              "type": "boolean"
                            },
                            "aospMdm": {
                              "type": "boolean"
                            },
                            "iosAgent": {
                              "type": "boolean"
                            },
                            "macosAgent": {
                              "type": "boolean"
                            },
                            "macosScripts": {
                              "type": "boolean"
                            },
                            "androidManagedConfigurations": {
                              "type": "boolean"
                            },
                            "appleManagedConfigurations": {
                              "type": "boolean"
                            },
                            "androidRemoteSupport": {
                              "type": "boolean"
                            },
                            "appleRemoteSupport": {
                              "type": "boolean"
                            },
                            "inventory": {
                              "type": "boolean"
                            },
                            "windowsMdm": {
                              "type": "boolean"
                            },
                            "windowsAgent": {
                              "type": "boolean"
                            },
                            "windowsScripts": {
                              "type": "boolean"
                            },
                            "countryAccessControl": {
                              "type": "boolean"
                            },
                            "assistant": {
                              "type": "boolean"
                            },
                            "userAudiences": {
                              "type": "boolean"
                            },
                            "unlimitedBuildRetention": {
                              "type": "boolean"
                            },
                            "policyComposition": {
                              "type": "boolean"
                            },
                            "deviceAudiences": {
                              "type": "boolean"
                            },
                            "certificateProviders": {
                              "type": "boolean"
                            },
                            "otpUsers": {
                              "type": "boolean"
                            },
                            "segments": {
                              "type": "boolean"
                            },
                            "overrideSamlUris": {
                              "type": "boolean"
                            }
                          },
                          "description": "Feature capability flags derived from subscription indicating which advanced features are enabled for workspace.",
                          "example": {
                            "customBranding": true,
                            "ssoLogin": true,
                            "customS3Bucket": true,
                            "androidAgent": true,
                            "aospMdm": true,
                            "iosAgent": true
                          }
                        },
                        "counts": {
                          "type": "object",
                          "properties": {},
                          "description": "Current resource usage statistics showing consumed quotas for applications collaborators devices and storage.",
                          "example": {
                            "apps": 12,
                            "collaborators": 8,
                            "devices": 247
                          }
                        },
                        "contactInfo": {
                          "type": "object",
                          "properties": {
                            "email": {
                              "type": "string",
                              "format": "email",
                              "maxLength": 256,
                              "description": "Primary contact email address for organization receiving system notifications, support responses, and billing communications.",
                              "example": "support@acmecorp.com"
                            },
                            "phoneNumber": {
                              "type": "string",
                              "maxLength": 128,
                              "description": "Organization contact phone number for support escalations and administrative communications when required.",
                              "example": "+1-555-0100"
                            }
                          },
                          "description": "Organization contact information for support communications, billing notifications, and administrative correspondence throughout system.",
                          "example": {
                            "email": "support@acmecorp.com",
                            "phoneNumber": "+1-555-0100"
                          }
                        },
                        "store": {
                          "type": "object",
                          "properties": {
                            "customDomain": {
                              "type": "string",
                              "maxLength": 256,
                              "nullable": true,
                              "description": "Custom domain name for branded application store replacing default Applivery URLs with organization domain.",
                              "example": "apps.acmecorp.com"
                            }
                          },
                          "description": "Application store configuration settings defining custom domain and employee access portal customization.",
                          "example": {
                            "customDomain": "apps.acmecorp.com"
                          }
                        },
                        "branding": {
                          "type": "object",
                          "properties": {
                            "logo": {
                              "type": "string",
                              "maxLength": 256,
                              "description": "Organization logo image URL displayed in dashboard header, emails, and application stores for brand recognition.",
                              "example": "https://cdn.acmecorp.com/logo.png"
                            },
                            "picture": {
                              "type": "string",
                              "description": "Organization banner picture URL used for workspace customization and visual identity in user-facing interfaces.",
                              "example": "https://cdn.acmecorp.com/banner.jpg"
                            },
                            "primaryColor": {
                              "type": "string",
                              "pattern": "^#[a-zA-Z0-9]{6}$",
                              "description": "Primary brand color in hexadecimal format applied throughout dashboard interface for consistent visual identity.",
                              "example": "#0066CC"
                            }
                          },
                          "description": "Visual identity customization settings including logo images and color schemes for white-label workspace presentation."
                        },
                        "security": {
                          "type": "object",
                          "properties": {
                            "role": {
                              "type": "string",
                              "enum": [
                                "org.owner",
                                "org.admin",
                                "org.editor",
                                "org.viewer",
                                "app.owner",
                                "app.admin",
                                "app.editor",
                                "app.viewer",
                                "unknown"
                              ],
                              "description": "Access permission level granted to currently authenticated user within organization context determining authorized administrative actions.",
                              "example": "org.admin"
                            },
                            "isPartner": {
                              "type": "boolean",
                              "description": "Indicates whether the organization is associated with a partner account, granting access to exclusive features, benefits, and support options available only to partner organizations.",
                              "example": false
                            }
                          },
                          "description": "Security context for authenticated user including access role and permission level within workspace.",
                          "example": {
                            "role": "org.admin"
                          }
                        },
                        "planAssignment": {
                          "type": "object",
                          "properties": {
                            "maxNumDaysExtension": {
                              "type": "integer",
                              "minimum": 0,
                              "description": "Specifies the maximum number of days the organization can extend its subscription beyond the original expiration date, allowing for temporary access to premium features or services.",
                              "example": 30
                            },
                            "maxNumDaysTrial": {
                              "type": "integer",
                              "minimum": 0,
                              "description": "Specifies the maximum number of days the organization can utilize trial features or services before requiring a paid subscription, providing a limited evaluation period for new users.",
                              "example": 14
                            }
                          }
                        },
                        "configuration": {
                          "type": "object",
                          "properties": {
                            "storageProvider": {
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "pattern": "^[a-fA-F0-9]{24}$",
                                  "description": "Storage provider unique identifier used for database references and API operations.",
                                  "example": "698f42e5457fafa13d088795"
                                },
                                "name": {
                                  "type": "string",
                                  "maxLength": 128,
                                  "description": "Storage provider display name identifying cloud service and region for administrative reference.",
                                  "example": "AWS S3 US East"
                                },
                                "region": {
                                  "type": "string",
                                  "maxLength": 128,
                                  "description": "Cloud provider geographic region code where application binaries and assets are stored.",
                                  "example": "us-east-1"
                                },
                                "config": {
                                  "type": "string",
                                  "maxLength": 128,
                                  "description": "Storage configuration type defining bucket settings access policies and performance characteristics.",
                                  "example": "s3-standard"
                                },
                                "provider": {
                                  "type": "string",
                                  "maxLength": 128,
                                  "description": "Cloud provider identifier indicating storage backend such as AWS Azure or Google Cloud Platform.",
                                  "example": "aws"
                                }
                              },
                              "description": "Cloud storage provider details including identifier name region and configuration for application binary hosting.",
                              "example": {
                                "id": "698f42e5457fafa13d088795",
                                "name": "AWS S3 US East",
                                "region": "us-east-1",
                                "config": "s3-standard",
                                "provider": "aws"
                              }
                            },
                            "notificationLanguage": {
                              "type": "string",
                              "enum": [
                                "es",
                                "en",
                                "fr",
                                "de",
                                "it",
                                "zh",
                                "pt",
                                "ru",
                                ""
                              ],
                              "nullable": true,
                              "description": "Default language code for system notifications and automated emails sent to organization members.",
                              "example": "en"
                            },
                            "required2FADashboard": {
                              "type": "boolean",
                              "description": "Flag enforcing two-factor authentication requirement for all dashboard access enhancing workspace security.",
                              "example": true
                            },
                            "required2FAStore": {
                              "type": "boolean",
                              "description": "Flag enforcing two-factor authentication requirement for application store access protecting employee app distribution.",
                              "example": false
                            },
                            "noReplyAlias": {
                              "type": "string",
                              "format": "email",
                              "maxLength": 256,
                              "description": "Custom no-reply email address displayed as sender in automated notifications for organization branding.",
                              "example": "noreply@acmecorp.com"
                            },
                            "buildPlatforms": {
                              "type": "array",
                              "items": {
                                "type": "string",
                                "maxLength": 128
                              },
                              "description": "List of mobile platforms enabled for build processing including iOS Android Windows macOS tvOS watchOS.",
                              "example": [
                                "ios",
                                "android",
                                "windows"
                              ]
                            },
                            "sdkExtraBuildPlatforms": {
                              "type": "array",
                              "items": {
                                "type": "string",
                                "maxLength": 128
                              },
                              "description": "Additional platform build capabilities available through SDK integration beyond standard build processing.",
                              "example": [
                                "macos",
                                "windows"
                              ]
                            },
                            "denyTraditionalAccess": {
                              "type": "boolean",
                              "description": "Flag restricting traditional password authentication requiring SSO or alternative login methods for enhanced security.",
                              "example": false
                            },
                            "buildRetentionDays": {
                              "type": "number",
                              "format": "float",
                              "minimum": -1,
                              "description": "Number of days to retain application builds before automatic deletion with negative one indicating unlimited retention.",
                              "example": 90
                            },
                            "buildsRetainedPerPublication": {
                              "type": "number",
                              "format": "float",
                              "minimum": -1,
                              "description": "Maximum number of builds preserved per publication release protecting storage while maintaining version history.",
                              "example": 5
                            },
                            "showDeviceNetworkLocation": {
                              "type": "boolean",
                              "description": "Flag enabling network location information display in device details for connectivity diagnostics.",
                              "example": true
                            }
                          },
                          "description": "Organization operational settings with storage provider details and complete feature configuration policies."
                        },
                        "blocked": {
                          "type": "boolean",
                          "description": "Flag indicating workspace suspension status preventing access when payment issues or policy violations detected.",
                          "example": false
                        },
                        "blockedReason": {
                          "type": "string",
                          "maxLength": 256,
                          "nullable": true,
                          "description": "Explanation for workspace suspension describing payment failure policy violation or administrative action causing block.",
                          "example": ""
                        },
                        "trialIniDate": {
                          "type": "string",
                          "format": "date-time",
                          "nullable": true,
                          "description": "Trial period start date in ISO format with null indicating no trial or converted paid subscription.",
                          "example": null
                        },
                        "trialEndDate": {
                          "type": "string",
                          "format": "date-time",
                          "nullable": true,
                          "description": "Trial period expiration date when free access ends requiring subscription upgrade or workspace suspension.",
                          "example": null
                        },
                        "lastPlan": {
                          "type": "string",
                          "maxLength": 128,
                          "description": "Most recent subscription plan code for workspace enabling billing history tracking and renewal recommendations.",
                          "example": "enterprise-annual"
                        },
                        "billingReason": {
                          "type": "string",
                          "enum": [
                            "noBilling",
                            "noSubs",
                            "subscribe"
                          ],
                          "nullable": true,
                          "description": "Current billing status reason explaining subscription state such as trial active canceled or payment issues.",
                          "example": "subscribe"
                        },
                        "lastActivityDate": {
                          "type": "string",
                          "format": "date-time",
                          "nullable": true
                        },
                        "createdBy": {
                          "type": "string",
                          "pattern": "^[a-fA-F0-9]{24}$",
                          "description": "User identifier who created organization workspace establishing initial ownership and administrative responsibility.",
                          "example": "698f42e5457fafa13d088799"
                        },
                        "createdAt": {
                          "type": "string",
                          "format": "date-time",
                          "description": "ISO timestamp when organization workspace was created for lifecycle tracking and audit purposes.",
                          "example": "2026-01-15T10:00:00Z"
                        },
                        "updatedAt": {
                          "type": "string",
                          "format": "date-time",
                          "description": "ISO timestamp of last organization modification for change tracking synchronization and audit trail.",
                          "example": "2026-02-13T14:30:00Z"
                        }
                      }
                    }
                  },
                  "totalDocs": {
                    "type": "integer"
                  },
                  "limit": {
                    "type": "integer"
                  },
                  "hasPrevPage": {
                    "type": "boolean"
                  },
                  "hasNextPage": {
                    "type": "boolean"
                  },
                  "page": {
                    "type": "integer"
                  },
                  "totalPages": {
                    "type": "integer"
                  },
                  "prevPage": {
                    "type": "integer",
                    "nullable": true
                  },
                  "nextPage": {
                    "type": "integer",
                    "nullable": true
                  },
                  "lean": {
                    "type": "boolean"
                  }
                }
              }
            }
          }
        }
      }
    },
    "400": {
      "content": {
        "application/json": {
          "schema": {
            "allOf": [
              {
                "type": "object",
                "properties": {
                  "status": {
                    "type": "boolean",
                    "enum": [
                      false
                    ]
                  }
                }
              },
              {
                "type": "object",
                "properties": {
                  "error": {
                    "oneOf": [
                      {
                        "type": "object",
                        "properties": {
                          "code": {
                            "type": "number",
                            "enum": [
                              5004
                            ]
                          },
                          "message": {
                            "type": "string",
                            "enum": [
                              "User is not member of any organization"
                            ]
                          }
                        }
                      },
                      {
                        "type": "object",
                        "properties": {
                          "code": {
                            "type": "number",
                            "enum": [
                              5010
                            ]
                          },
                          "message": {
                            "type": "string",
                            "enum": [
                              "Billing platform error"
                            ]
                          }
                        }
                      },
                      {
                        "type": "object",
                        "properties": {
                          "code": {
                            "type": "number",
                            "enum": [
                              6002
                            ]
                          },
                          "message": {
                            "type": "string",
                            "enum": [
                              "Body Validation Error"
                            ]
                          }
                        }
                      }
                    ]
                  }
                }
              }
            ]
          }
        }
      }
    },
    "401": {
      "content": {
        "application/json": {
          "schema": {
            "allOf": [
              {
                "type": "object",
                "properties": {
                  "status": {
                    "type": "boolean",
                    "enum": [
                      false
                    ]
                  }
                }
              },
              {
                "type": "object",
                "properties": {
                  "error": {
                    "oneOf": [
                      {
                        "type": "object",
                        "properties": {
                          "code": {
                            "type": "number",
                            "enum": [
                              4002
                            ]
                          },
                          "message": {
                            "type": "string",
                            "enum": [
                              "No auth token"
                            ]
                          }
                        }
                      },
                      {
                        "type": "object",
                        "properties": {
                          "code": {
                            "type": "number",
                            "enum": [
                              4004
                            ]
                          },
                          "message": {
                            "type": "string",
                            "enum": [
                              "Invalid Token"
                            ]
                          }
                        }
                      }
                    ]
                  }
                }
              }
            ]
          }
        }
      }
    }
  }
}
```
