Superadmin APIs/Policies
Get Policy
POST
/superadmin/policyBearer token required
SUPERADMINContent-Type:
application/jsonRequest Body
| Name | Type | Required | Description |
|---|---|---|---|
PolicyType | string | Required | PRIVACY_POLICYSERVICE_TERMSCOOKIESREFUND |
Request Example
JSON
{
"PolicyType": "PRIVACY_POLICY"
}Code Examples
curl -X POST 'https://<your-domain>:3001/superadmin/policy' \
-H 'Authorization: Bearer <token>' \
-H 'Content-Type: application/json' \
-d '{
"PolicyType": "PRIVACY_POLICY"
}'