Update a contact list

put

/api/REST/1.0/assets/contact/list/{id}

Updates the contact list specified by the id parameter. All properties should be included in PUT requests, as some properties will be considered blank if not included.

Request

Supported Media Types
Path Parameters
Body ()
The request body defines the details of the contact list to be updated.
Root Schema : ContactList
Type: object
Title: ContactList
Show Source
Nested Schema : membershipAdditions
Type: array
The number of contact membership additions in the contact list.
Show Source
Nested Schema : membershipDeletions
Type: array
The number of contact membership deletions in the contact list.
Show Source
Back to Top

Response

Supported Media Types

200 Response

OK
Body ()
Root Schema : ContactList
Type: object
Title: ContactList
Show Source
Nested Schema : membershipAdditions
Type: array
The number of contact membership additions in the contact list.
Show Source
Nested Schema : membershipDeletions
Type: array
The number of contact membership deletions in the contact list.
Show Source

400 Response

Bad request. See Status Codes for information about other possible HTTP status codes.

401 Response

Unauthorized. See Status Codes for information about other possible HTTP status codes.

403 Response

Forbidden. See Status Codes for information about other possible HTTP status codes.

404 Response

The requested resource was not found. See Status Codes for information about other possible HTTP status codes.

500 Response

The service has encountered an error. See Status Codes for information about other possible HTTP status codes.
Back to Top

Examples

Update the name and description value of the contact list with Id #86:


PUT /api/REST/1.0/assets/contact/list/86
Content-Type: application/json 
			

Request body:


{
    "name":"New Name",
    "id":"86",
    "description":"this is a new description for my contact list."
}
			

Response:


{
    "type":"ContactList",
    "id":"86",
    "createdAt":"1434980628",
    "createdBy":"19",
    "depth":"complete",
    "description":"this is a new description for my contact list.",
    "folderId":"48",
    "name":"New Name",
    "permissions":"fullControl",
    "updatedAt":"1434980974",
    "updatedBy":"19",
    "count":"0",
    "dataLookupId":"4f27ab85-e90c-4217-a4e9-ca9deb607a47",
    "scope":"global"
}
			
Back to Top