PATCH
/api/public/v1/settings/organizationUpdate organization settings
Update display name, automated tax flag, IP whitelist enforcement, etc.
Request Body
| Property | Type | Description |
|---|---|---|
displayName | string | Organization display name. |
ipWhitelistEnabled | boolean | Enforce IP whitelist. |
automatedTaxes | boolean | Enable automated taxes. |
PATCHExample request
curl
curl -X PATCH "https://www.pxb.app/api/public/v1/settings/organization" \
-H "X-Organization-Id: your_org_id" \
-H "X-API-Key: your_api_key" \
-H "Content-Type: application/json" \
-d '{
"ipWhitelistEnabled": true
}'200Example response
json
{
"message": "Organization settings updated successfully!",
"content": {
"settings": {
"ipWhitelistEnabled": true
}
}
}