PUT api/Activities/{id}
Update an existing Activity. This is not a partial update therefore, please pass in the full activity object to your request. For partial updates, use the PATCH endpoint
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Activity ID |
globally unique identifier |
Required |
Body Parameters
Serialized Activity record in the body of the request
Activity| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| SeriesId | globally unique identifier |
None. |
|
| AccessorID | globally unique identifier |
None. |
|
| IsCleared | boolean |
None. |
|
| IsAlarmCreated | boolean |
None. |
|
| IsAlarmed | boolean |
None. |
|
| LeadMinutes | integer |
None. |
|
| AlarmDue | string |
None. |
|
| ExternalID | string |
None. |
|
| Location | string |
None. |
|
| IsTimeless | boolean |
None. |
|
| IsPrivate | boolean |
None. |
|
| PriorityId | integer |
None. |
|
| ActivityPriorityName | string |
None. |
|
| ActivityTypeId | integer |
None. |
|
| ActivityTypeName | string |
None. |
|
| Subject | string |
None. |
|
| ScheduledBy | string |
None. |
|
| ScheduledFor | string |
None. |
|
| ScheduledForID | globally unique identifier |
None. |
|
| ScheduledByID | globally unique identifier |
None. |
|
| DeletedDates | Collection of date |
None. |
|
| ClearedDates | Collection of date |
None. |
|
| RecurSpec | ActivityRecurSpec |
None. |
|
| EditDate | date |
None. |
|
| CreateDate | date |
None. |
|
| OccurTime | date |
None. |
|
| OccurEndTime | date |
None. |
|
| StartTime |
SQL Column Name: [START_DATE_TIME] |
date |
None. |
| EndTime |
SQL Column Name: [END_DATE_TIME] |
date |
None. |
| Details |
SQL Column Name: [DETAILS] |
string |
None. |
| LinkedEntities | LinkedEntities |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": "0db20791-df9f-4268-a8de-787747b1473c",
"SeriesId": "685009c0-beea-4775-aa84-1dbe3d0b8f65",
"AccessorID": "0efec9cf-b316-44eb-b0d4-766e34981b5e",
"IsCleared": true,
"IsAlarmCreated": true,
"IsAlarmed": true,
"LeadMinutes": 7,
"AlarmDue": "sample string 8",
"ExternalID": "sample string 9",
"Location": "sample string 10",
"IsTimeless": true,
"IsPrivate": true,
"PriorityId": 13,
"ActivityPriorityName": "sample string 14",
"ActivityTypeId": 15,
"ActivityTypeName": "sample string 16",
"Subject": "sample string 17",
"ScheduledBy": "sample string 18",
"ScheduledFor": "sample string 19",
"ScheduledForID": "39e9da4b-8d4a-48ce-bfd6-cd1a808f464d",
"ScheduledByID": "22e0d54d-9764-42dd-a2fb-2e44a8edf15c",
"DeletedDates": [
"2026-06-30T23:58:26Z",
"2026-06-30T23:58:26Z"
],
"ClearedDates": [
"2026-06-30T23:58:26Z",
"2026-06-30T23:58:26Z"
],
"RecurSpec": {
"Month": 1,
"Frequency": 2,
"Day": {
"DayAsInt": 1
},
"OptOutValue": true,
"Operator": "sample string 4",
"AuthManager": "sample string 5",
"Field": "sample string 6",
"EndDate": "2026-06-30T23:58:26Z",
"eValue": 8,
"CallListName": "sample string 9",
"IsEndless": true
},
"EditDate": "2026-06-30T23:58:26Z",
"CreateDate": "2026-06-30T23:58:26Z",
"OccurTime": "2026-06-30T23:58:26Z",
"OccurEndTime": "2026-06-30T23:58:26Z",
"StartTime": "2026-06-30T23:58:26Z",
"EndTime": "2026-06-30T23:58:26Z",
"Details": "sample string 28",
"LinkedEntities": {
"Contacts": [
"767011c4-715d-4a4a-a2a0-dfc92fc32c09",
"96c38f69-21d4-42f1-a4d5-32b9698ffd41"
],
"Companies": [
"d7dddd79-cfb0-4d8a-af3a-0eabfdf18b9d",
"3ba67bea-814a-47e6-9777-9d1a03a30988"
],
"Groups": [
"46236421-867f-4d0f-9437-f4e9b837487c",
"4f02ea2d-e108-4f3d-abd7-bff42bfd54e6"
],
"Opportunities": [
"c1c243c2-37dd-42d0-aea2-de524cd95efb",
"3cd33147-299d-4193-a6ed-10a0e13b8a91"
]
}
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.