Skip to content

MngGetNote

Returns full note data.

Access Control

Requires CRM access and see_notes. The note scope must be accessible to the manager. Admin scope bypasses this check.

Request

{
  "command": "MngGetNote",
  "extID": "1",
  "data": {
    "id": 1
  }
}

Response Data

{
  "note": {
    "id": 1,
    "customer_id": 1001,
    "ast_json": {
      "type": "div",
      "props": {},
      "children": []
    },
    "text": "Customer called back"
  }
}