VotePipe
Back to Provider Endpoints

PATCH /v1/providers/:key

Update provider settings using a partial update (PATCH) approach. Only the fields you provide in the request body will be modified; all other settings remain unchanged. This allows you to update specific aspects of a provider, such as changing the display name, enabling or disabling the provider, or modifying configuration without having to resubmit the entire provider configuration. Use this endpoint to programmatically manage provider states or update settings in bulk.

Request

http
PATCH https://api.votepipe.com/v1/providers/hytale-servers-pro Authorization: Bearer mr_live_your_api_key_here Content-Type: application/json { "name": "Updated Name", "enabled": false }

Response (200 OK)

json
{ "data": { "id": "1", "key": "hytale-servers-pro", "name": "Updated Name", "enabled": false, ... } }

Learn More