Skip to content

Dismiss, snooze, or restore one fixed Coach recommendation on this device

PUT
/v1/mobile/coach/recommendations/{key}
curl --request PUT \
--url https://api.vocapable.com/v1/mobile/coach/recommendations/team_coverage \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{ "action": "dismiss", "snooze_duration": "one_hour" }'
key
required
Key
string
Allowed values: team_coverage transfer_destination availability schedule notifications calendar_booking receptionist capacity portal
Media typeapplication/json
MobileCoachRecommendationPreferenceChangeRequest

A finite local handling action, never a way to mutate the underlying setup item.

object
action
required
Action
string
Allowed values: dismiss snooze restore
snooze_duration
Any of:
string
Allowed values: one_hour one_day one_week

Successful Response

Media typeapplication/json
MobileCoachRecommendationPreference

Current-device handling of one fixed Workspace Setup recommendation key.

object
key
required
Key
string
Allowed values: team_coverage transfer_destination availability schedule notifications calendar_booking receptionist capacity portal
state
required
State
string
Allowed values: active dismissed snoozed
snoozed_until
Any of:
string format: date-time
Example
{
"key": "team_coverage",
"state": "active"
}

Validation Error

Media typeapplication/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationError
object
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
input
Input
ctx
Context
object
Examplegenerated
{
"detail": [
{
"loc": [
"example"
],
"msg": "example",
"type": "example",
"input": "example",
"ctx": {}
}
]
}