Returns a list of notes in a given project.
https://<space_id>.repsona.com/api/project/:projectId/note
Owner
Admin
Member
Name | Type | Description |
---|---|---|
projectId* | string | Project ID |
Name | Type | Description |
---|---|---|
page | string | Starting page of the list. Minimum 1 . |
keywords | string | Keywords. Multiple can be specified, separated by commas. |
tags | string | Tag ID. Multiple can be specified, separated by commas. |
is_wip | enum (true , false ) | Includes work in progress |
{
"requestedBy": 1,
"project": 1,
"notes": [
{
"tags": [
{
"createdAt": 1672498800000,
"updatedAt": 1672498800000,
"id": 1746,
"name": "JavaScript",
"sortOrder": 0,
"color": "#2196F3",
"type": null,
"space": 1
}
],
"createdAt": 1672498800000,
"updatedAt": 1672498800000,
"id": 1746,
"name": "About the elephant",
"sortOrder": 1,
"description": "# About the elephant",
"isWIP": false,
"space": 1,
"parent": null,
"project": {
"createdAt": 1672498800000,
"updatedAt": 1672498800000,
"id": 1746,
"name": "elephant-website",
"fullName": "Elephant website development project",
"purpose": "Investigating elephant ecology.",
"avatarUrl": "/dummy/project-icon1.png",
"productImageUrl": "",
"sortOrder": 0,
"free": true,
"isClosed": false,
"isPublic": false,
"extra": null,
"space": 1
}
}
]
}