Skip to main content
PUT
/
lists
/
{id}
Update List
curl --request PUT \
  --url https://crm.universal.rollout.com/api/lists/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'X-Rollout-Credential-Id: <api-key>' \
  --data '
{
  "name": "<string>",
  "description": "<string>",
  "isFavorite": true
}
'
{
  "id": "<string>",
  "originalIds": {},
  "original": {},
  "created": "<string>",
  "updated": "<string>",
  "rolloutUpdated": "<string>",
  "peopleParticipantIds": [
    "<string>"
  ],
  "name": "<string>",
  "isFavorite": true,
  "description": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://rollout.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Authorization JWT

X-Rollout-Credential-Id
string
header
required

The Rollout Credential ID to use for queries/mutations

Path Parameters

id
string
required

Body

name
string
description
string
isFavorite
boolean

Response

OK

id
string
required
originalIds
object
required
original
object
required
created
string
required
updated
string
required
rolloutUpdated
string
required
peopleParticipantIds
string[]
required
name
string
required
isFavorite
boolean
required
description
string
required