Skip to main content
GET
/
api
/
assets
/
{id}
/
notes
/
cURL
curl --request GET \
  --url https://{server}/api/assets/{id}/notes/ \
  --cookie sessionid=
[
  {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "author": {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "name": "<string>",
      "email": "jsmith@example.com"
    },
    "content": "<string>",
    "created_at": "2023-11-07T05:31:56Z",
    "replies": [
      {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "author": {
          "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
          "name": "<string>",
          "email": "jsmith@example.com"
        },
        "content": "<string>",
        "created_at": "2023-11-07T05:31:56Z"
      }
    ]
  }
]

Authorizations

sessionid
string
cookie
required

Path Parameters

id
string<uuid>
required

Response

200 - application/json
id
string<uuid>
required
read-only
author
object
required
content
string
required
read-only
created_at
string<date-time>
required
read-only
replies
object[]
required
read-only