We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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, ) ) ),
The text was updated successfully, but these errors were encountered:
Wonderfull, thank you.
Sorry, something went wrong.
Hi Markri,
Sorry that i have to reopen it, but you forget the due date field.
"due_at" => array( "location" => "json", "type" => "string", 'required' => false, ),
Thank you, Chris
Could you please create a pull request for this, together with an updated unit test?
No branches or pull requests
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?
The text was updated successfully, but these errors were encountered: