Partner API
Patch settings
PATCH /api/v2/settings - Updates curated fields only - agency_name, primary_color, secondary_color, owner_timezone, owner_phone.
PATCH
/api/v2/settingsUpdates curated fields only - agency_name, primary_color, secondary_color, owner_timezone, owner_phone.
Required scope: settings (or *).
JSON body
| Name | Required | Description |
|---|---|---|
agency_name | No | Agency display name |
primary_color | No | Primary brand hex color |
secondary_color | No | Secondary brand hex color |
owner_timezone | No | Owner timezone id |
owner_phone | No | Owner phone |
curl -s -X PATCH -H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"agency_name": "Acme Benefits",
"primary_color": "#0b5fff",
"secondary_color": "#112233",
"owner_timezone": "America/New_York",
"owner_phone": "5550001111"
}' \
"https://benefitpath.com/api/v2/settings"
{
"success": true,
"settings": {
"agency_name": "Acme Benefits",
"primary_color": "#0b5fff",
"secondary_color": "#112233",
"owner_timezone": "America/New_York",
"owner_phone": "5550001111"
}
}
See Errors for the standard error envelope and rate limits.