v1
latestOpenAPI 3.0.12026-07-22120163333.7 KBSales Agents V2
Update Sales Agent settings
Update the Sales Agent settings for the current user. Sales Agent creation must be completed in CRM. This API only supports updating existing settings.
put/v2.0/sales-agent/settings
Headers
Authorizationstring required
Bearer [access_token]
Content-Typestring required
application/json
Request body
Example request
{
"id": 12345,
"assistantName": "Anna",
"virtualNumber": "+1234567890",
"virtualNumberCountry": "US",
"callTransferType": "Disabled",
"fixedNumber": "+1234567890",
"agentExperience": "10 years in real estate",
"websiteChannel": true,
"textChannel": true,
"emailChannel": true,
"startActiveHour": 8,
"endActiveHour": 20,
"activeDays": [
1,
2,
3,
4,
5
],
"leadTypes": [
1,
2
],
"leadSources": [
1001,
1002
],
"leadPipelines": [
2001,
2002
],
"agentIds": [
101,
102
],
"officeIds": [
201,
202
],
"leadPondIds": [
301,
302
],
"newLeadEnable": true,
"visitorsEnable": true,
"followUpRole": "AI"
}Response
Settings updated successfully.
Example response
{
"message": "Operation successful"
}