Skip to main content
POST
/
notes
/
create
curl -X POST https://app.drime.cloud/api/v1/notes/create \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "title": "My New Note",
    "body": "This is the content of my note..."
  }'
{
  "status": "success",
  "note": {
    "id": 3,
    "title": "My New Note",
    "body": "This is the content of my note...",
    "created_at": "2024-01-20T10:00:00.000000Z",
    "updated_at": "2024-01-20T10:00:00.000000Z"
  }
}

Overview

Creates a new note with the specified title and content.

Request Body

title
string
required
Note title
body
string
required
Note content

Response

note
object
The created note object
status
string
Request status (success)
curl -X POST https://app.drime.cloud/api/v1/notes/create \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "title": "My New Note",
    "body": "This is the content of my note..."
  }'
{
  "status": "success",
  "note": {
    "id": 3,
    "title": "My New Note",
    "body": "This is the content of my note...",
    "created_at": "2024-01-20T10:00:00.000000Z",
    "updated_at": "2024-01-20T10:00:00.000000Z"
  }
}