Insightly

Links

    Insightly API

    Getting access, Developing, Testing

    Back to Insightly

    Adds A Comment To A Task

    Input

    type: object properties: parameters: type: object properties: id: type: string description: A Record's ID apiChildEntity: title: Task required: - TASK_ID - TITLE - COMPLETED - OWNER_USER_ID - DATE_CREATED_UTC - DATE_UPDATED_UTC type: object properties: TASK_ID: format: int64 maxLength: 0 type: integer readOnly: true TITLE: format: string maxLength: 500 type: string readOnly: false CATEGORY_ID: format: int32 maxLength: 0 type: integer readOnly: false DUE_DATE: format: date-time maxLength: 0 type: string readOnly: false COMPLETED: format: boolean maxLength: 0 type: boolean readOnly: false DETAILS: format: string maxLength: 4000 type: string readOnly: false STATUS: format: string maxLength: 20 type: string readOnly: false PRIORITY: format: int32 maxLength: 0 type: integer readOnly: false PERCENT_COMPLETE: format: int32 maxLength: 0 type: integer readOnly: false START_DATE: format: date-time maxLength: 0 type: string readOnly: false MILESTONE_ID: format: int32 maxLength: 0 type: integer readOnly: false RESPONSIBLE_USER_ID: format: int32 maxLength: 0 type: integer readOnly: false OWNER_USER_ID: format: int32 maxLength: 0 type: integer readOnly: false EMAIL_ID: format: int32 maxLength: 0 type: integer readOnly: false PROJECT_ID: format: int32 maxLength: 0 type: integer readOnly: false REMINDER_DATE_UTC: format: date-time maxLength: 0 type: string readOnly: false OWNER_VISIBLE: format: boolean maxLength: 0 type: boolean readOnly: false PARENT_TASK_ID: format: int32 maxLength: 0 type: integer readOnly: false RECURRENCE: format: string maxLength: 20 type: string readOnly: false OPPORTUNITY_ID: format: int32 maxLength: 0 type: integer readOnly: false ASSIGNED_TEAM_ID: format: int32 maxLength: 0 type: integer readOnly: false CUSTOMFIELDS: type: array items: title: CustomField type: object properties: FIELD_NAME: type: string FIELD_VALUE: type: object description: The child entity to add (just include JSON object as request body) required: - id - apiChildEntity title: Parameters