MuleSoft · Schema
Organization
An Anypoint Platform organization or business group. Organizations are the top-level containers that hold all platform resources including users, environments, and deployed applications.
API GatewayAPI ManagementEnterpriseIntegration
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique identifier of the organization |
| name | string | Display name of the organization |
| createdAt | string | Timestamp when the organization was created |
| updatedAt | string | Timestamp when the organization was last updated |
| ownerId | string | User ID of the organization owner |
| clientId | string | Client ID for the organization used in API authentication |
| idprovider_id | string | Identity provider ID if external identity management is configured |
| isFederated | boolean | Whether the organization uses federated identity management |
| parentOrganizationIds | array | IDs of parent organizations in the business group hierarchy |
| subOrganizationIds | array | IDs of child business groups |
| tenantOrganizationIds | array | IDs of tenant organizations |
| mfaRequired | boolean | Whether multi-factor authentication is required |
| isAutomaticAdminPromotionExempt | boolean | Whether automatic admin promotion is disabled |
| domain | string | Domain associated with the organization |
| isMaster | boolean | Whether this is the root (master) organization |
| environments | array | Environments belonging to this organization |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Organization",
"type": "object",
"description": "An Anypoint Platform organization or business group. Organizations are the top-level containers that hold all platform resources including users, environments, and deployed applications.",
"properties": {
"id": {
"type": "string",
"description": "Unique identifier of the organization"
},
"name": {
"type": "string",
"description": "Display name of the organization"
},
"createdAt": {
"type": "string",
"description": "Timestamp when the organization was created"
},
"updatedAt": {
"type": "string",
"description": "Timestamp when the organization was last updated"
},
"ownerId": {
"type": "string",
"description": "User ID of the organization owner"
},
"clientId": {
"type": "string",
"description": "Client ID for the organization used in API authentication"
},
"idprovider_id": {
"type": "string",
"description": "Identity provider ID if external identity management is configured"
},
"isFederated": {
"type": "boolean",
"description": "Whether the organization uses federated identity management"
},
"parentOrganizationIds": {
"type": "array",
"description": "IDs of parent organizations in the business group hierarchy"
},
"subOrganizationIds": {
"type": "array",
"description": "IDs of child business groups"
},
"tenantOrganizationIds": {
"type": "array",
"description": "IDs of tenant organizations"
},
"mfaRequired": {
"type": "boolean",
"description": "Whether multi-factor authentication is required"
},
"isAutomaticAdminPromotionExempt": {
"type": "boolean",
"description": "Whether automatic admin promotion is disabled"
},
"domain": {
"type": "string",
"description": "Domain associated with the organization"
},
"isMaster": {
"type": "boolean",
"description": "Whether this is the root (master) organization"
},
"environments": {
"type": "array",
"description": "Environments belonging to this organization"
}
}
}