Skip to main content
GET
/
getNote
/
{id}
curl -X GET https://app.drime.cloud/api/v1/getNote/1 \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"
{
  "data": {
    "id": 1,
    "title": "Meeting Notes",
    "body": "Discussed project timeline and deliverables..."
  }
}

Overview

Retrieves a specific note by its ID.

Path Parameters

id
integer
required
Note ID

Response

data
object
The note object
curl -X GET https://app.drime.cloud/api/v1/getNote/1 \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"
{
  "data": {
    "id": 1,
    "title": "Meeting Notes",
    "body": "Discussed project timeline and deliverables..."
  }
}