Skip to main content
POST
/
api
/
v2
/
note
curl --request POST \
  --url https://api.example.com/api/v2/note \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "attributes": {
    "note_html": {
      "value_type": "rich_text",
      "value": "<p>Discovery call recap.</p>"
    }
  }
}
'
{
  "data": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z",
    "attributes": {
      "id": {
        "value": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "value_type": "uuid"
      },
      "organization_id": {
        "value": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "value_type": "uuid"
      },
      "note_html": {
        "value": "<string>",
        "value_type": "rich_text"
      },
      "owner_user_id": {
        "value": {
          "related_record_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
          "related_record_type": "<string>"
        },
        "value_type": "record_reference"
      },
      "created_at": {
        "value": "2023-11-07T05:31:56Z",
        "value_type": "timestamp"
      },
      "created_by_user_id": {
        "value": {
          "related_record_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
          "related_record_type": "<string>"
        },
        "value_type": "record_reference"
      },
      "participant_user_id_list": [
        {
          "value": {
            "related_record_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
            "related_record_type": "<string>"
          },
          "value_type": "record_reference"
        }
      ],
      "title": {
        "value": "<string>",
        "value_type": "string"
      },
      "owner_team_id": {
        "value": {
          "related_record_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
          "related_record_type": "<string>"
        },
        "value_type": "record_reference"
      },
      "is_private": {
        "value": true,
        "value_type": "boolean"
      },
      "updated_at": {
        "value": "2023-11-07T05:31:56Z",
        "value_type": "timestamp"
      },
      "deleted_at": {
        "value": "2023-11-07T05:31:56Z",
        "value_type": "timestamp"
      },
      "updated_by_user_id": {
        "value": {
          "related_record_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
          "related_record_type": "<string>"
        },
        "value_type": "record_reference"
      },
      "deleted_by_user_id": {
        "value": {
          "related_record_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
          "related_record_type": "<string>"
        },
        "value_type": "record_reference"
      },
      "attachment_ids": [
        {
          "value": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
          "value_type": "uuid"
        }
      ]
    },
    "record_type": "note"
  }
}

Authorizations

Authorization
string
header
required

Reevo API key passed as Authorization: Bearer <api-key>.

Body

application/json
attributes
NoteCreateRequestAttributes · object
required

Create writable-field surface.

Note's writable set is exactly two fields: note_html (the rich-text body, required on create — the key must be present; an explicit empty string or null is accepted and yields an empty body, but omitting the key returns 400 field_required_missing) and title. The owner is system-managed — the core note write path stamps owner_user_id = the API-key caller and carries no owner_team_id — so owner refs are read-only render fields, not declared here; an explicit value lands in __pydantic_extra__ and is rejected by the shared custom-field write-validator (a non-cus_field__ extra).

Response

Successful Response

Wrapper around a single NoteObjectRecord — GET / POST / PATCH.

data
NoteObjectRecord · object
required