Skip to main content
Skip table of contents

[POST] Create or update groupings of print queue computers

This endpoint creates or updates groupings of print queue computers.

If there is no grouping with the same GroupName, a new grouping will be created. If there is already a grouping registered with the same GroupName, but with different GroupDescription information, the grouping will be updated.

If there is no computer with the same Hostname, a new computer will be created and automatically linked to the grouping.

Call

POST /v1/groups/computers

Header

Parameter

Description

Type

Mandatory

Tenant

Name of the provider.

For this information, see the documentation: Portal menus.

string

Yes

Authorization

Authentication token obtained.

string

Yes

Body

Parameter

Description

Type

Mandatory

Client

Name of the customer, as registered in the NDD Orbix portal.

string

Yes

Groups

List of groupings.

array

Yes

GroupName

Name that will identify the grouping.

string

Yes

GroupDescription

Brief description of the purpose of the grouping.

string

No

Computers

List of computers.

array

Yes

Hostname

Computer name.

Do not use accents, symbols (except hyphens) or spaces.

string

Yes

Example request

Create or update two groupings with three computers each:

CODE
curl -L -X POST 'http://developer.nddorbix.com/printqueue-external-integration-api/v1/groups/computers' \
-H 'Tenant: {tenant}' \
-H 'Authorization: Bearer {token}' \
-H 'Content-Type: application/json' \
-d '{
    "Client": "ABC",
    "Groups": [
        {
            "GroupName": "Group 1",
            "GroupDescription" : "Group 1 description",
            "Computers": [
                {
                    "Hostname": "PC-001"
                },
                {
                    "Hostname": "LAPTOP002"
                },
                {
                    "Hostname": "SERVER003"
                }
            ]
        },
        {
            "GroupName": "Group 2",
            "GroupDescription" : "Group 2 description",
            "Computers": [
                {
                    "Hostname": "PC-004"
                },
                {
                    "Hostname": "LAPTOP005"
                },
                {
                    "Hostname": "SERVER006"
                }
            ]
        }
    ]
}'

In the same request, you can create or update up to 5 groupings with 1,000 computers each.

To create or update more than 5 groupings, make more than one request.

Example response

The response code 201 indicates that:

  • all groupings have been successfully created or updated and will return the following JSON:

CODE
[]

or

  • there was a partial failure to create or update some groupings, and will return the reason for the failure in JSON:

CODE
[
    {
        "groupName": "GroupTest GroupTest GroupTest GroupTest GroupTest GroupTest GroupTest GroupTest GroupTest GroupTest GroupTest GroupTest GroupTest GroupTest GroupTest GroupTest",
        "computers": [
            {
                "hostName": "PC@001",
                "errorMessage": "The hostname cannot contain special characters."
            }
        ],
        "errorMessage": "Group Name is too long."
    },
    {
        "groupName": "Group 2",
        "computers": [
            {
                "hostName": "SERVER#003",
                "errorMessage": "The hostname cannot contain special characters."
            }
        ],
        "errorMessage": ""
    }
]

The code 400 response indicates that there was a failure to create or update all groupings, and will return the following JSON:

CODE
{
    "errors": {
        "3400": [
            "All groups are invalid."
        ]
    },
    "title": "BadRequest",
    "status": 400,
    "detail": "BusinessException",
    "instance": "/v1/groups/computers"
}
JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.