Update a specific note (put is depricated)

PATCH /notes/{noteid}

To update the note with the note specified

Path parameters

  • noteid integer Required

    The ID of the note to change.

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 application/json

    OK

    Hide response attributes Show response attributes object
    • success string
    • note_id integer

      The ID of the note just updated - same as the original note id

  • 400 application/json

    Error

    Hide response attribute Show response attribute object
PATCH /notes/{noteid}
curl \
 -X PATCH https://YOURSITE.infoodle.com/apiv2/notes/{noteid} \
 -H "Authorization: Bearer $ACCESS_TOKEN" \
 -H "Content-Type: text/plain"
Response examples (200)
{
  "success": "ok",
  "note_id": 150
}
Response examples (400)
{
  "error": "Error updating the note"
}