Endpoint: POST /lists/:id/duplicate
id
list name (string) or ID (UUID)Body:
name
string, the name of the new list (optional)
-copy
appended, for example bugs-copy
Response:
status
: 200 for success
Example request
curl <https://api.height.app/lists/bugs/duplicate> \\
-X POST \\
-H "Authorization: api-key secret_1234" \\
-H "Content-Type: application/json" \\
-d '{"name":"new-bugs-list"}'