Hello Markri,
in the basecamp api you can add a date and assign a person to a todo list.
Maybe you can update your service with that feature?
'createTodoByTodolist' => array(
'httpMethod' => 'POST',
'uri' => 'projects/{projectId}/todolists/{todolistId}/todos.json',
'parameters' => array(
'projectId' => array(
'location' => 'uri',
'description' => 'Project id',
'required' => true
),
'todolistId' => array(
'location' => 'uri',
'description' => 'Todo list id',
'required' => true
),
"content" => array(
"location" => "json",
"type" => "string",
'required' => true,
),
"due_at" => array(
"location" => "json",
"type" => "string",
'required' => false,
),
"assignee" => array(
"location" => "json",
"type" => "array",
'required' => false,
)
)
),
Hello Markri,
in the basecamp api you can add a date and assign a person to a todo list.
Maybe you can update your service with that feature?
'createTodoByTodolist' => array( 'httpMethod' => 'POST', 'uri' => 'projects/{projectId}/todolists/{todolistId}/todos.json', 'parameters' => array( 'projectId' => array( 'location' => 'uri', 'description' => 'Project id', 'required' => true ), 'todolistId' => array( 'location' => 'uri', 'description' => 'Todo list id', 'required' => true ), "content" => array( "location" => "json", "type" => "string", 'required' => true, ), "due_at" => array( "location" => "json", "type" => "string", 'required' => false, ), "assignee" => array( "location" => "json", "type" => "array", 'required' => false, ) ) ),