Objeto Organization

Describe el objeto JSON de una Organization.

Una Organization en Netux | Cloud puede almacenar Devices, Users y Limits, entre otros. Las Organizations son usadas para separar Devices y Users en grupos (Organizations).

PropertyTypeDescription
idStringId of Organization
labelStringLabel of Organization
nameStringName of Organization
createdAtStringDate Organization was created
appObjectApp of the organization. Each organization can be related to one single app only.
descriptionStringDescription of Device
devicesCountIntegerNumber of Devices in Organization
faviconImage FileIcon of Organization
logoImage FileLogo of Organization
isActiveBooleanTrue if Organization is active
limitsObject ArrayLimits of Organization, e.g. Email limit or SMS limit
propertiesObjectProperties of Organization
usersCountIntegerNumber of Users of Organization
urlStringUrl of Organization
{
    "app": {
        "id": "5dfa39901a9ca53020c6938d",
        "label": "my_application",
        "name": "Netux | Cloud App of Me",
        "url": "https://api.netux.com/api/v2.0/apps/5dfa39901a9ca53020c6938d"
    },
    "createdAt": "2020-01-01T14:05:55.471155Z",
    "description": "Other Organization",
    "devicesCount": 0,
    "favicon": null,
    "id": "435ab418805c32fa400f",
    "isActive": true,
    "label": "my-second-customer",
    "limits": [
        {
            "actual_value": 0,
            "icon": "hdd-o",
            "max_value": "*",
            "name": "Devices",
            "type": "devices"
        },
        {
            "actual_value": 0,
            "icon": "envelope",
            "max_value": "*",
            "name": "Emails",
            "type": "emails"
        },
        {
            "actual_value": 0,
            "icon": "signal",
            "max_value": "*",
            "name": "Variables",
            "type": "variables"
        },
        {
            "actual_value": 0,
            "icon": "users",
            "max_value": "*",
            "name": "Users",
            "type": "users"
        },
        {
            "actual_value": 0,
            "icon": "spinner",
            "max_value": "*",
            "name": "Dots",
            "type": "dots"
        },
        {
            "actual_value": 0,
            "icon": "mobile-phone",
            "max_value": "*",
            "name": "SMS",
            "type": "sms"
        },
        {
            "actual_value": 0,
            "icon": null,
            "max_value": "*",
            "name": "Voice",
            "type": "voice"
        }
    ],
    "logo": null,
    "name": "My Second Customer",
    "properties": {"any": "thing"},
    "url": "https://api.netux.com/api/v2.0/organizations/435ab418805c32fa400f",
    "usersCount": 0
}