latestOpenAPI 3.0.32026-08-08360156.4 KB

ae7fddf16bf9

Contacts

Update a contact list

put/api/lists/{id}

Request body

namestring required

New name of the list

isSharedboolean required

Enable/disable list sharing with the team

Example request

{
  "name": "aperiam",
  "isShared": true
}

Response

idinteger
namestring
created_atstring
updated_atstring
shared_with_teamboolean
is_ownerboolean

Example response

{
  "id": 1,
  "name": "updated list name",
  "created_at": "2022-08-23T16:46:43.000000Z",
  "updated_at": "2022-08-23T16:46:43.000000Z",
  "shared_with_team": true,
  "is_owner": true
}