v2

latestOpenAPI 3.0.3Apache 2.02026-07-31158109678.6 KB
projects

List project notes

List project notes

get/account/projects/{project_id}/notes

Path parameters

project_idinteger required

Project unique identifier

Query parameters

pageinteger

Page number. Used for pagination with page_size

page_sizeinteger

The number of results included on a page. Used for pagination with page

limitinteger

Number of results included on a page. Used for pagination with query

offsetinteger

Where to start the listing (the offset of the first result). Used for pagination with limit

Response

OK. List of project notes

idinteger required

Project note id

user_idinteger required

User who wrote the note

abstractstring required

Note Abstract - short/truncated content

user_namestring required

Username of the one who wrote the note

created_datestring required

Date when note was created

modified_datestring required

Date when note was last modified

Example response

[
  {
    "id": 1,
    "user_id": 100008,
    "abstract": "text",
    "user_name": "user",
    "created_date": "2017-05-16T16:49:11Z",
    "modified_date": "2017-05-16T16:49:11Z"
  }
]