Add Auxiliary Accounts

Add Auxiliary Accounts

All the listed privileges are required -

Privileges Description
GLOBAL_CONFIG_MANAGEMENT Caller should have permission to this privilege, to perform this operation.
Request
URI
POST
https://{api_host}/rest/external/v1/ad-domains/{id}/action/add-auxiliary-accounts
COPY
Path Parameters
string
id
Required

id


Request Body
ADDomainAuxiliaryAccountCreateSpec of type(s) application/json
Required

Show optional properties

{
    "auxiliary_accounts": [
        {
            "password": [
                {}
            ],
            "username": "Administrator"
        }
    ]
}
{
    "auxiliary_accounts": [
        {
            "password": [
                "<password>"
            ],
            "username": "Administrator"
        }
    ]
}
array of object
auxiliary_accounts
Required

Auxiliary service account credentials.

Authentication
This operation uses the following authentication methods.
Responses
200

OK

[
    "BulkItemResponseInfo Object"
]

400

Bad Request

Operation doesn't return any data structure

401

User is not authenticated

Operation doesn't return any data structure

403

Access to the resource is forbidden

Operation doesn't return any data structure

409

Conflict

Operation doesn't return any data structure

Code Samples
COPY
                    curl -X POST -H 'Authorization: <value>' -H 'Content-Type: application/json' -d '{"auxiliary_accounts":["object"]}' https://{api_host}/rest/external/v1/ad-domains/{id}/action/add-auxiliary-accounts