Update Restricted Address Book


This request edits the attributes of a restricted address book.

Resource

PATCH /restrictedaddressbooks/<OID>

Where OID is the object ID of the Restricted Address Book.

Parameters

None

Payload

Fields

Name Patch Operations

commonName

replace

members

add|remove|replace

Response

None

Context

Authorization

Administrator

Errors

Example

Request
PATCH https://xelion.nl/api/v1/master/restrictedaddressbooks/2064650
Payload
{
    "operations": [
        {
            "op": "add",
            "path": "/members",
            "value": {
                "user": {
                    "oid": "2063017"
                }
            }
        },
        {
            "op": "remove",
            "path": "/members",
            "value": {
                "user": {
                    "oid": "2063015"
                }
            }
        }
    ]
}