Task

Task Object

The Task is a type of Activity  in Order Time.  

End Point

/task

GET, POST, PUT, DELETE

GET and DELETE requests expect parameter id of type Int32.

Properties

PropertyCaptionData TypeRequired
SubjectSubjectString (255)True
TypeRefActivity TypeEntityRefTrue
AssignedToRefAssigned ToEntityRefTrue
StatusRefStatusEntityRefTrue
DueDateDue DateDateTimeTrue
DescriptionDescriptionString (4000)False
ContactRefContactEntityRefFalse
RelatedToEntityTypeRelated ToRecordTypeEnumFalse
RelatedToEntityRefRelated ToEntityRefFalse
RelatedToDocTypeRelated ToRecordTypeEnumFalse
RelatedToDocNoRelated ToInt32False
IsAlarmedAlarmBooleanFalse
ReminderMinutesAlarmInt32False
PriorityPriority0 = Low
1 = Normal
2 = High
3 = Critical
False
CustomFieldsCustom FieldsArray of CustomFieldDataFalse

Json Sample

{   
    "Subject": "Make a call",
    "TypeRef": { "Id": 2, "Name":"Task"},
    "AssignedToRef": { "Id": 150, "Name":"Dean"},
    "StatusRef": { "Id": 1, "Name":"Open"},
    "DueDate": "2022-01-29T09:00:00",
    "IsAlarmed": true,
    "Priority": 2,
    "ReminderMinutes": 15,
    "Description": "See if he wants to order next week"
    "RelatedToDocType": 7,
    "RelatedToDocNo": 10698,
    "CustomFields": [
      {       
        "Name": "ActivityCust1", 
        "Value": "Pre-sale"
      }
     ]
}