Get the lists you need when creating notes

POST /notes

To add a new note for against a contact or household/organisation

text/plain

Body Required

  • unique_id integer
  • for string

    Values are P or H.

  • text string

    The text of the note

  • Values are anyone, me, or group.

  • When the visibility is set to group, you must include this other property, otherwise its optional

  • The color code used for this note

    Values are transparent, 929497, 9a75ab, f3b24d, f5324e, 39c3d1, 82ca68, f278a9, or 45bdb3.

Responses

  • 200

    OK

    Hide response attributes Show response attributes object
  • 400

    Error

    Hide response attribute Show response attribute object
POST /notes
curl \
 -X POST https://YOURSITE.infoodle.com/apiv2/notes \
 -H "Authorization: Bearer $ACCESS_TOKEN" \
 -H "Content-Type: text/plain" \
 -d '[{"unique_id":12345,"for":"P","text":"John enjoyed his trip","visibility":"group","visibility_group":543,"color_code":"9a75ab","note_type_id":20}]'
Request example
[
  {
    "unique_id": 12345,
    "for": "P",
    "text": "John enjoyed his trip",
    "visibility": "group",
    "visibility_group": 543,
    "color_code": "9a75ab",
    "note_type_id": 20
  }
]
Response examples (200)
{
  "success": "ok",
  "note_id": 150
}
Response examples (400)
{
  "error": "Error creating the note"
}