curl --request PATCH \
--url https://api.kelviq.com/api/v1/catalog/products/{pk}/settings/ \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"vpn": false,
"tor": false,
"proxy": true,
"currency": "EUR",
"productUrl": "https://app.example.com"
}
'{
"vpn": true,
"tor": true,
"proxy": true,
"currency": "USD",
"productUrl": "https://app.example.com"
}Updates one or more product settings fields. Changing currency re-enables previously disabled prices in the new currency on the latest plans of that product.
curl --request PATCH \
--url https://api.kelviq.com/api/v1/catalog/products/{pk}/settings/ \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"vpn": false,
"tor": false,
"proxy": true,
"currency": "EUR",
"productUrl": "https://app.example.com"
}
'{
"vpn": true,
"tor": true,
"proxy": true,
"currency": "USD",
"productUrl": "https://app.example.com"
}Documentation Index
Fetch the complete documentation index at: https://docs.kelviq.com/llms.txt
Use this file to discover all available pages before exploring further.
The Server API Key obtained from the kelviq application. Pass as a Bearer token in the Authorization header. Example: 'Authorization: Bearer YOUR_API_KEY'
Product UUID.
Updated product settings.
Behavioural and presentation settings attached to a product.
If true, VPN traffic is allowed for this product's experience.
true
If true, Tor traffic is allowed.
true
If true, proxy traffic is allowed.
true
Default currency for the product.
"USD"
Public URL of the product.
"https://app.example.com"