Insightly

Links

    Insightly API

    Getting access, Developing, Testing

    Back to Insightly

    Put Projects Id Notes

    If you have trouble updating a Project, try accessing the Project via the GET request to inspect its fields and sub-elements. A common source of problems with write/update requests occurs when users either omit required fields, or insert invalid data into a field (for example, by referring a CATEGORY_ID or LINK_ID which does not exist.

    Input

    type: object properties: parameters: type: object properties: id: type: string description: A Record's ID (RECORD_ID) brief: type: string description: >- Optional, true if response should only contain top level properties of the record. fieldValues: title: Note required: - TITLE type: object properties: NOTE_ID: format: int64 maxLength: 0 type: integer readOnly: true TITLE: format: string maxLength: 255 type: string readOnly: false BODY: format: string maxLength: 0 type: string readOnly: false DATE_CREATED_UTC: format: date-time maxLength: 0 type: string readOnly: false DATE_UPDATED_UTC: format: date-time maxLength: 0 type: string readOnly: false description: The record to add (just include the JSON object as the request body) required: - id - fieldValues title: Parameters