Configure Remote Control Consent Notifications in bulk.

Configure Remote Control Consent Notifications in bulk.

SecuritybearerAuth
Request
path Parameters
accountUuid
required
string <uuid>

The UUID of the account for which to configure Remote Control Consent Notifications.

orgUuid
required
string <uuid>

The UUID of the organization for which to configure Remote Control Consent Notifications.

Request Body schema: application/json

Remote Control Consent

device_uuids
required
Array of strings <uuid>

UUIDs of devices to configure RC consent.

required
object
bypass_consent
boolean

Whether to bypass consent.

Responses
201

Created

400

Invalid Request

401

Access token is missing or invalid

403

You do not have permission to perform this action.

404

Entity not found

429

Too many requests

503

Service Unavailable

post/config/consent/account/{accountUuid}/org/{orgUuid}/device
Request samples
application/json
{
  • "device_uuids": [
    • "a4603e09-7cab-4e0f-ad6b-c484436e74fc",
    • "1a2b3c4d-5e6f-7a8b-9c0d-e1f2a3b4c5d6",
    • "7a8b9c0d-e1f2-a3b4-c5d6-e7f8a9b0c1d2"
    ],
  • "config": {
    • "bypass_consent": true
    }
}
Response samples
application/json
{
  • "bypass_consent": true,
  • "unprocessedDeviceUuids": [
    • "a4603e09-7cab-4e0f-ad6b-c484436e74fc",
    • "1a2b3c4d-5e6f-7a8b-9c0d-e1f2a3b4c5d6",
    • "7a8b9c0d-e1f2-a3b4-c5d6-e7f8a9b0c1d2"
    ]
}