Skip to content

Updtae createTodoByTodolist? #19

@cms09

Description

@cms09

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,
                )
            )
        ),

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions