duplicateList
Duplicate an existing list in Godspeed by providing the list ID and a new name, enabling quick replication of list structures for efficient task management.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
list_id | Yes | ||
name | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"list_id": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"list_id"
],
"type": "object"
}