Update employer settings
PUT/v1/employers/{employer_id}/settings
Updates configuration settings for a specific employer. The employer must belong to the authenticated organization.
Update employer settings
curl https://api.vitablehealth.com/v1/employers/$EMPLOYER_ID/settings \
-X PUT \
-H 'Content-Type: application/json' \
-H "Authorization: Bearer $VITABLE_CONNECT_API_KEY" \
-d '{
"pay_frequency": "bi_weekly"
}'{
"data": {
"pay_frequency": "bi_weekly"
}
}Returns Examples
{
"data": {
"pay_frequency": "bi_weekly"
}
}