nooks
GitHubInstall
Lists and items

Rename list

RenameList changes a List's name. Only its owner may.

PATCH
/api/v1/lists/{listUid}

Path Parameters

listUid*string

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

curl -X PATCH "https://example.com/api/v1/lists/string" \  -H "Content-Type: application/json" \  -d '{}'
{  "list": {    "uid": "string",    "name": "string",    "sharing": "SHARING_UNSPECIFIED",    "canEdit": true,    "isOwner": true,    "isPinned": true,    "openCount": 0,    "doneCount": 0,    "createdAt": "string",    "updatedAt": "string",    "archivedAt": "string",    "archivedByName": "string"  }}