2023-07-11 23:18:22 +00:00
{
"services" : {
"create_task" : {
"name" : "Create task" ,
"description" : "Creates (or update) a new task in your Remember The Milk account. If you want to update a task later on, you have to set an \"id\" when creating the task. Note: Updating a tasks does not support the smart syntax." ,
"fields" : {
"name" : {
2023-07-13 15:52:50 +00:00
"name" : "[%key:common::config_flow::data::name%]" ,
2023-07-11 23:18:22 +00:00
"description" : "Name of the new task, you can use the smart syntax here."
} ,
"id" : {
"name" : "ID" ,
"description" : "Identifier for the task you're creating, can be used to update or complete the task later on."
}
}
} ,
"complete_task" : {
"name" : "Complete task" ,
2023-10-12 11:18:43 +00:00
"description" : "Completes a task that was previously created." ,
2023-07-11 23:18:22 +00:00
"fields" : {
"id" : {
"name" : "ID" ,
"description" : "Identifier that was defined when creating the task."
}
}
}
}
}