Obtener Organization

Este endpoint devuelve una Organization específica.

Solicitud HTTP

Para obtener una sola Organization, haz una petición GET a la siguiente URL:

HTTP MethodURL
GEThttps://api.netux.com/api/v2.0/organizations/<organization_key>/

Parámetros de ruta

ParameterTypeDescription
organization_keyStringThe id or label of the Organization, label should use the prefix ~

Parámetros de consulta

ParameterTypeUseDescription
tokenStringAuthenticationAuthentication Token can optionally be sent as a query parameter
fieldsComma separated listDynamic FieldsSpecify the fields that should be obtained in the response object

Cabecera

ParameterRequired?Description
X-Auth-TokenYesAuthentication Token of account
$ curl -X GET 'https://api.netux.com/api/v2.0/organizations/<organization_key>' \
 -H 'X-Auth-Token: oaXBo6ODhIjPsusNRPUGIK4d72bc73'

Respuesta

Devuelve un objeto Organization con la Organization solicitada.

{
    "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":  {
        "h36": "https://.../media/logos/ubidots-white_36.png",
         "h50": "https://.../media/logos-big/ubidots-white_50.png",
         "raw": "https://.../media/logos-raw/ubidots-white.png"   
    },
    "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": {
        "h36": "https://.../media/logos/netux-white_36.png",
        "h50": "https://.../media/logos-big/netux-white_50.png",
        "raw": "https://.../media/logos-raw/netux-white.png"
    },
    "name": "My Second Customer",
    "properties": {"any": "thing"},
    "url": "https://api.netux.com/api/v2.0/organizations/435ab418805c32fa400f",
    "usersCount": 0
}
{
    "code": 400001,
    "message": "Validation Error.",
    "detail": {
        ....
    }
}
{
    "code": 401001,
    "message": "Authentication credentials were not provided.",
    "detail": "Authentication credentials were not provided."
}