POST
/
api
/
v1
/
updateList
/
{spaceId}
/
{listId}
curl --request POST \
  --url https://hero.page/api/v1/updateList/{spaceId}/{listId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "color": "<string>"
}'

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

spaceId
string
required

The ID of the space

listId
string
required

The ID of the list

Body

application/json
name
string

The name of the list

color
string

The color code for the list

Response

200
_mintlify/placeholder

OK