Update email scanner rule priorities
PATCH/accounts/{account_id}/dlp/email/rules
Reorders DLP email scanning rules by updating their priority values. Higher priority rules are evaluated first.
Security
API Token
The preferred authorization scheme for interacting with the Cloudflare API. Create a token.
Example:
API Email + API Key
The previous authorization scheme for interacting with the Cloudflare API, used in conjunction with a Global API key.
Example:
The previous authorization scheme for interacting with the Cloudflare API. When possible, use API tokens instead of Global API keys.
Example:
Accepted Permissions (at least one required)
Update email scanner rule priorities
curl https://api.cloudflare.com/client/v4/accounts/$ACCOUNT_ID/dlp/email/rules \
-X PATCH \
-H 'Content-Type: application/json' \
-H "Authorization: Bearer $CLOUDFLARE_API_TOKEN" \
-d '{
"new_priorities": {
"foo": 0
}
}'{
"errors": [
{
"code": 1000,
"message": "message",
"documentation_url": "documentation_url",
"source": {
"pointer": "pointer"
}
}
],
"messages": [
{
"code": 1000,
"message": "message",
"documentation_url": "documentation_url",
"source": {
"pointer": "pointer"
}
}
],
"success": true,
"result": {
"action": {
"action": "Block",
"message": "message"
},
"conditions": [
{
"operator": "InList",
"selector": "Recipients",
"value": [
"string"
]
}
],
"created_at": "2019-12-27T18:11:19.117Z",
"enabled": true,
"name": "name",
"priority": 0,
"rule_id": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
"updated_at": "2019-12-27T18:11:19.117Z",
"description": "description"
}
}Returns Examples
{
"errors": [
{
"code": 1000,
"message": "message",
"documentation_url": "documentation_url",
"source": {
"pointer": "pointer"
}
}
],
"messages": [
{
"code": 1000,
"message": "message",
"documentation_url": "documentation_url",
"source": {
"pointer": "pointer"
}
}
],
"success": true,
"result": {
"action": {
"action": "Block",
"message": "message"
},
"conditions": [
{
"operator": "InList",
"selector": "Recipients",
"value": [
"string"
]
}
],
"created_at": "2019-12-27T18:11:19.117Z",
"enabled": true,
"name": "name",
"priority": 0,
"rule_id": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
"updated_at": "2019-12-27T18:11:19.117Z",
"description": "description"
}
}