logo
Enrichment SettingsUpdate provider priority/enabled
Enrichment Settings

Update provider priority/enabled

Update the enabled status and/or priority order of one or more enrichment providers. Only provided fields are updated — omitted fields remain unchanged.

curl -X PATCH "https://api.sendkit.ai/v1/enrichment-settings" \
  -H "Content-Type: application/json" \
  -H "X-Api-Key: YOUR_API_KEY" \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -d '{
  "providers": [
    {
      "provider": "leadmagic",
      "priority": 0
    },
    {
      "provider": "sendkit",
      "priority": 1
    }
  ]
}'
{
  "success": true,
  "data": {
    "message": "Settings updated"
  }
}
PATCH
/v1/enrichment-settings
PATCH
API Key (header: X-Api-Key)
X-Api-Keystring
Required

Platform API key (sk_user_...) or Workspace API key (sk_...)

Platform API key (sk_user_...) or Workspace API key (sk_...)
Bearer Token
Bearer Tokenstring
Required

API key as Bearer token

API key as Bearer token
Content-Typestring
Required

The media type of the request body

Options: application/json
providersarray
Required

List of provider updates

Request Preview
Response

Response will appear here after sending the request

Authentication

header
X-Api-Keystring
Required

API Key for authentication. Platform API key (sk_user_...) or Workspace API key (sk_...)

header
Authorizationstring
Required

Bearer token. API key as Bearer token

Body

application/json
providersarray
Required

List of provider updates

Responses

successboolean
dataobject