Skip to content

Latest commit

 

History

History
31 lines (27 loc) · 636 Bytes

project.md

File metadata and controls

31 lines (27 loc) · 636 Bytes

Project API Request Response

A project is the top level container for any tasks that can be associated with the task. Each project needs a unique code so that the subsequent tasks can be named accordingly.

Request

data = {
    'title': 'New Project',
    'description': 'Build stuff here',
    'code': 'NP'
}

Response

[{
    'id': <project.id>,
    'title': 'New Project,
    'description': 'Build stuff here,
    'code': NP,
    'created_by': {
        'username': 'creator',
        'email': '[email protected]'
    },
    'created_at': <datetime>,
    'modified_at': <datetime>,
    'status': 'DRAFT'
}]