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": "7ded7179-c7eb-4039-a64b-9bc26aa98220",
"SeriesId": "f38668d2-8559-4e74-8868-7347e91142cb",
"AccessorID": "8e19b24c-371a-45b1-a3eb-ced0b15b0968",
"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": "1b9eddd7-dea1-45f8-81f9-a561db9f1499",
"ScheduledByID": "2ee33cb8-be23-47ec-997d-65a85ef892e5",
"DeletedDates": [
"2026-08-29T12:42:51Z",
"2026-08-29T12:42:51Z"
],
"ClearedDates": [
"2026-08-29T12:42:51Z",
"2026-08-29T12:42:51Z"
],
"RecurSpec": {
"Month": 1,
"Frequency": 2,
"Day": {
"DayAsInt": 1
},
"OptOutValue": true,
"Operator": "sample string 4",
"AuthManager": "sample string 5",
"Field": "sample string 6",
"EndDate": "2026-08-29T12:42:51Z",
"eValue": 8,
"CallListName": "sample string 9",
"IsEndless": true
},
"EditDate": "2026-08-29T12:42:51Z",
"CreateDate": "2026-08-29T12:42:51Z",
"OccurTime": "2026-08-29T12:42:51Z",
"OccurEndTime": "2026-08-29T12:42:51Z",
"StartTime": "2026-08-29T12:42:51Z",
"EndTime": "2026-08-29T12:42:51Z",
"Details": "sample string 28",
"LinkedEntities": {
"Contacts": [
"2532d20c-4706-4771-9eb3-343c6da78e11",
"28f56795-b4ec-4434-ac7a-39711c406b78"
],
"Companies": [
"1da4d95a-8ec3-42b9-85d4-95f834f7f1ba",
"0c5e554d-7a09-4842-8b5d-6392c6b6f91d"
],
"Groups": [
"69add369-6f51-4aae-8c8e-2c91fa5bfd60",
"4b416076-b2e3-4564-9cb6-e6c5927b4d63"
],
"Opportunities": [
"715c173f-3c16-45c9-9458-cb89d4385b13",
"4f5f4299-22e9-4fe9-ab0f-b46fe9d7df1d"
]
}
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.