cURL
curl --request POST \ --url https://api.example.com/admin/configuration \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "rule_type": "global_product_catalog", "is_enabled": true } '
{ "configuration_rule": { "id": "<string>", "rule_type": "<string>", "is_enabled": true } }
Creates a request to admin to accept new resource
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The type of the rule
global_product_catalog
require_product_approval
product_request_enabled
product_import_enabled
Created
A configuration rule object
Show child attributes