Insightly

Links

    Insightly API

    Getting access, Developing, Testing

    Back to Insightly

    Post Opportunities Id Notes

    If you have trouble with creating an Opportunity, try creating Opportunities via the web interface, and then access those Opportunities via the API. This way you can see examples of the fields and sub-elements attached to the Opportunity. A common source of problems during write/update request is caused when users omit required fields, or insert invalid data in a field (e.g. reference a CATEGORY_ID that does not exist in the user's Insightly instance.

    Input

    type: object properties: parameters: type: object properties: id: type: string description: A Record's ID (RECORD_ID) 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