Skip to main content
PUT
/
api
/
Configuration
/
Activities
/
{activityTypeId}
Updates Activity Settings.
curl --request PUT \
  --url https://api.example.com/api/Configuration/Activities/{activityTypeId} \
  --header 'Content-Type: application/json' \
  --data '
{
  "settingID": 123,
  "id": 123,
  "name": "<string>",
  "customName": "<string>",
  "customSubject": "<string>",
  "followUp": 123,
  "followUpDropDownEnabled": true,
  "defaultFollowUpActivityTypeID": 123,
  "workflowStatus": 123,
  "category": 123,
  "defaultStatus": 123,
  "contactEmailTemplate": 123,
  "candidateEmailTemplate": 123,
  "workflowStatusName": "<string>",
  "isClientsEnabled": true,
  "isContactsEnabled": true,
  "isOpportunitiesEnabled": true,
  "isJobsEnabled": true,
  "isCandidatesEnabled": true,
  "isPlacementsEnabled": true,
  "defaultActivityTemplateId": 123,
  "defaultActivityTemplateName": "<string>"
}
'

Path Parameters

activityTypeId
integer<int32>
required

Body

application/json
settingID
integer<int32>
id
integer<int32>
name
string | null
customName
string | null
customSubject
string | null
followUp
integer<int32>
followUpDropDownEnabled
boolean
defaultFollowUpActivityTypeID
integer<int32>
workflowStatus
integer<int32>
category
integer<int32>
defaultStatus
integer<int32>
contactEmailTemplate
integer<int32>
candidateEmailTemplate
integer<int32>
workflowStatusName
string | null
isClientsEnabled
boolean
isContactsEnabled
boolean
isOpportunitiesEnabled
boolean
isJobsEnabled
boolean
isCandidatesEnabled
boolean
isPlacementsEnabled
boolean
defaultActivityTemplateId
integer<int32>

The default activity template ID for this activity type. Only company-owned templates are valid for this setting.

defaultActivityTemplateName
string | null

The name of the default activity template.

Response

200

OK