Skip to main content

GetOrganizationResponseModel

statusboolean

Whether the request succeeded.

Example: true
messagestring

Human-readable description of the result.

Example: Successfully retrieved organizations info
organization object

An object containing details about the organization and its members.

idinteger

Unique numeric identifier.

Example: 6190
namestring

Resource name.

Example: Example Organization
creditinteger

Available account credit.

thresholdinteger

Spending threshold above which the alert is triggered.

total_instancesinteger
total_volumesinteger
total_containersinteger
total_clustersinteger
users object[]

An array containing information about the organization's members.

  • Array [
  • idinteger

    Unique numeric identifier.

    Example: 9876
    substring

    The unique identifier for the user for authentication and authorization purposes.

    Example: 5c7d8e9f0a1b2c3d4e5f6a7b8c9d0e1f2a3b4c5d6e7f8a9b0c1d2e3f4a5b6c7d
    emailstring

    User email address.

    usernamestring

    Login username.

    Example: Jane Doe
    namestring

    Resource name.

    Example: Jane Doe
    rolestring

    Role assigned to the user.

    Example: Owner
    rbac_roles object[]

    An array containing the IDs of any RBAC (Role-Based Access Control) roles granted to the user.

  • Array [
  • namestring

    Resource name.

  • ]
  • joined_atstring<date-time>
    last_loginstring<date-time>
    Example: 2026-05-06T14:32:11Z
  • ]
  • created_atstring<date-time>

    ISO 8601 UTC timestamp marking when the resource was created.

    Example: 2026-05-07T09:21:55Z
    GetOrganizationResponseModel
    {
    "status": true,
    "message": "Successfully retrieved organizations info",
    "organization": {
    "id": 6190,
    "name": "Example Organization",
    "credit": 0,
    "threshold": 0,
    "total_instances": 0,
    "total_volumes": 0,
    "total_containers": 0,
    "total_clusters": 0,
    "users": [
    {
    "id": 9876,
    "sub": "5c7d8e9f0a1b2c3d4e5f6a7b8c9d0e1f2a3b4c5d6e7f8a9b0c1d2e3f4a5b6c7d",
    "email": "[email protected]",
    "username": "Jane Doe",
    "name": "Jane Doe",
    "role": "Owner",
    "rbac_roles": [
    {
    "name": "string"
    }
    ],
    "joined_at": "2024-07-29T15:51:28.071Z",
    "last_login": "2026-05-06T14:32:11Z"
    }
    ],
    "created_at": "2026-05-07T09:21:55Z"
    }
    }