http://127.0.01:8000/api/token/
{
"email": "{{userMail}}",
"password": "{{userPassword}}"
}
{
"refresh": "{{refreshToken}}",
"access": "{{accessToken}}"
}
β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β
http://127.0.01:8000/api/token/refresh/
{
"refresh": "{{refreshToken}}"
}
{
"access": "{{accessToken}}"
}
β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β
http://127.0.0.1:8000/api/projects/
Param | value | Type |
---|---|---|
token | {{accessToken}} | string |
{
"count": 3,
"next": null,
"previous": null,
"results": [
{
"id": 1,
"title": "New Project",
"description": "A description",
"type": "BE",
"author": 1,
"contributors": [
1
]
},
{
"id": 2,
"title": "SoftDesk API",
"description": "A description",
"type": "BE",
"author": 1,
"contributors": []
},
{
"id": 3,
"title": "SoftDesk Webapp",
"description": "A description",
"type": "FE",
"author": 1,
"contributors": []
}
]
}
β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β
http://127.0.0.1:8000/api/projects/
{
"title": "New Project",
"description": "A description",
"type": "BE"
}
Param | value | Type |
---|---|---|
token | {{accessToken}} | string |
{
"id": 1,
"title": "New Project",
"description": "A description",
"type": "BE",
"author": 1,
"contributors": []
}
β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β
http://127.0.0.1:8000/api/projects/{{projectID}}
Param | value | Type |
---|---|---|
token | {{accessToken}} | string |
{
"id": 1,
"title": "New Project",
"description": "A description",
"type": "BE",
"author": 1,
"contributors": [
1
]
}
β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β
http://127.0.0.1:8000/api/projects/{{projectID}}/
{
"title": "Edit Project",
"description": "A description",
"type": "ANDROID"
}
Param | value | Type |
---|---|---|
token | {{accessToken}} | string |
{
"id": 1,
"title": "Edit Project",
"description": "A description",
"type": "ANDROID",
"author": 1,
"contributors": [
1
]
}
β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β
http://127.0.0.1:8000/api/projects/{{projectID}}/
Param | value | Type |
---|---|---|
token | {{accessToken}} | string |
null
β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β
http://127.0.0.1:8000/api/projects/{{projectID}}/issues/
Param | value | Type |
---|---|---|
token | {{accessToken}} | string |
{
"count": 4,
"next": null,
"previous": null,
"results": [
{
"id": 1,
"title": "Important issue",
"description": "A description",
"tag": "BUG",
"priority": "HIGH",
"project": 1,
"status": "TO_DO",
"author": 1,
"assignee_user": 1,
"created_time": "2022-05-31T16:10:18.774866Z"
},
{
"id": 2,
"title": "Write doc",
"description": "A description",
"tag": "ENHANCEMENT",
"priority": "LOW",
"project": 1,
"status": "DONE",
"author": 1,
"assignee_user": 1,
"created_time": "2022-05-31T16:14:27.788526Z"
},
{
"id": 3,
"title": "A task",
"description": "A description",
"tag": "TASK",
"priority": "LOW",
"project": 1,
"status": "DONE",
"author": 1,
"assignee_user": 1,
"created_time": "2022-05-31T16:16:09.226151Z"
},
{
"id": 4,
"title": "Issue",
"description": "A description",
"tag": "BUG",
"priority": "NORMAL",
"project": 1,
"status": "TO_DO",
"author": 1,
"assignee_user": 1,
"created_time": "2022-05-31T16:16:53.101865Z"
}
]
}
β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β
http://127.0.0.1:8000/api/projects/{{projectID}}/issues/
{
"title": "Important issue",
"description": "A description",
"tag": "BUG",
"priority": "HIGH",
"status": "TO_DO"
}
Param | value | Type |
---|---|---|
token | {{accessToken}} | string |
{
"id": 1,
"title": "Important issue",
"description": "A description",
"tag": "BUG",
"priority": "HIGH",
"project": 1,
"status": "TO_DO",
"author": 1,
"assignee_user": 1,
"created_time": "2022-05-31T16:10:18.774866Z"
}
β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β
http://127.0.0.1:8000/api/projects/{{projectID}}/issues/{{issueID}}
Param | value | Type |
---|---|---|
token | {{accessToken}} | string |
{
"id": 4,
"title": "Issue",
"description": "A description",
"tag": "BUG",
"priority": "NORMAL",
"project": 1,
"status": "TO_DO",
"author": 1,
"assignee_user": 1,
"created_time": "2022-05-31T16:16:53.101865Z"
}
β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β
http://127.0.0.1:8000/api/projects/{{projectID}}/issues/{{issueID}}/
{
"title": "Edit issue",
"description": "A description",
"tag": "BUG",
"priority": "HIGH",
"status": "TO_DO"
}
Param | value | Type |
---|---|---|
token | {{accessToken}} | string |
{
"id": 4,
"title": "Edit issue",
"description": "A description",
"tag": "BUG",
"priority": "HIGH",
"project": 1,
"status": "TO_DO",
"author": 1,
"assignee_user": 1,
"created_time": "2022-05-31T16:16:53.101865Z"
}
β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β
http://127.0.0.1:8000/api/projects/{{projectID}}/issues/{{issueID}}/
Param | value | Type |
---|---|---|
token | {{accessToken}} | string |
null
β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β
http://127.0.0.1:8000/api/projects/{{projectID}}/issues/{{issueID}}/comments
Param | value | Type |
---|---|---|
token | {{accessToken}} | string |
{
"count": 3,
"next": null,
"previous": null,
"results": [
{
"id": 1,
"description": "New comment",
"author": 1,
"issue": 1,
"created_time": "2022-06-01T15:34:41.595524Z"
},
{
"id": 2,
"description": "A comment",
"author": 1,
"issue": 1,
"created_time": "2022-06-01T15:35:40.726890Z"
},
{
"id": 3,
"description": "About issue",
"author": 1,
"issue": 1,
"created_time": "2022-06-01T15:36:15.079688Z"
}
]
}
β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β
http://127.0.0.1:8000/api/projects/{{projectID}}/issues/{{issueID}}/comments/
{
"description": "A comment"
}
Param | value | Type |
---|---|---|
token | {{accessToken}} | string |
{
"id": 1,
"description": "New comment",
"author": 1,
"issue": 1,
"created_time": "2022-06-01T15:34:41.595524Z"
}
β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β
http://127.0.0.1:8000/api/projects/{{projectID}}/issues/{{issueID}}/comments/{{commentID}}
Param | value | Type |
---|---|---|
token | {{accessToken}} | string |
{
"id": 1,
"description": "New comment",
"author": 1,
"issue": 1,
"created_time": "2022-06-01T15:34:41.595524Z"
}
β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β
http://127.0.0.1:8000/api/projects/{{projectID}}/issues/{{issueID}}/comments/{{commentID}}/
{
"description": "Edited comment"
}
Param | value | Type |
---|---|---|
token | {{accessToken}} | string |
{
"id": 3,
"description": "Edited comment",
"author": 1,
"issue": 1,
"created_time": "2022-06-01T15:36:15.079688Z"
}
β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β
http://127.0.0.1:8000/api/projects/{{projectID}}/issues/{{issueID}}/comments/{{commentID}}/
Param | value | Type |
---|
Param | value | Type |
---|---|---|
token | {{accessToken}} | string |
null
β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β
Powered By: postman-to-markdown