Create new URL submissions
brand_protection.submit(BrandProtectionSubmitParams**kwargs) -> BrandProtectionSubmitResponse
POST/accounts/{account_id}/brand-protection/submit
Return new URL submissions
Security
API Token
The preferred authorization scheme for interacting with the Cloudflare API. Create a token.
Example:
Accepted Permissions (at least one required)
Create new URL submissions
import os
from cloudflare import Cloudflare
client = Cloudflare(
api_token=os.environ.get("CLOUDFLARE_API_TOKEN"), # This is the default and can be omitted
)
response = client.brand_protection.submit(
account_id="x",
)
print(response.skipped_urls){
"skipped_urls": [
{
"foo": "bar"
}
],
"submitted_urls": [
{
"foo": "bar"
}
]
}Returns Examples
{
"skipped_urls": [
{
"foo": "bar"
}
],
"submitted_urls": [
{
"foo": "bar"
}
]
}