Skip to content
Start here

Payloads

List the Content Scanning custom expressions of a zone.
content_scanning.payloads.list(PayloadListParams**kwargs) -> SyncSinglePage[PayloadListResponse]
GET/zones/{zone_id}/content-upload-scan/payloads
Create Content Scanning custom expressions for a zone.
content_scanning.payloads.create(PayloadCreateParams**kwargs) -> SyncSinglePage[PayloadCreateResponse]
POST/zones/{zone_id}/content-upload-scan/payloads
Delete a Content Scanning custom expression from a zone.
content_scanning.payloads.delete(strexpression_id, PayloadDeleteParams**kwargs) -> SyncSinglePage[PayloadDeleteResponse]
DELETE/zones/{zone_id}/content-upload-scan/payloads/{expression_id}
Update a Content Scanning custom expression for a zone.
content_scanning.payloads.update(strexpression_id, PayloadUpdateParams**kwargs) -> SyncSinglePage[PayloadUpdateResponse]
PATCH/zones/{zone_id}/content-upload-scan/payloads/{expression_id}
ModelsExpand Collapse
class PayloadListResponse:

Defines a Content Scanning custom expression.

id: Optional[str]

Defines the unique ID for this Content Scanning custom expression.

maxLength32
payload: Optional[str]

Defines the custom content extraction expression used to reach content objects in the request.

class PayloadCreateResponse:

Defines a Content Scanning custom expression.

id: Optional[str]

Defines the unique ID for this Content Scanning custom expression.

maxLength32
payload: Optional[str]

Defines the custom content extraction expression used to reach content objects in the request.

class PayloadDeleteResponse:

Defines a Content Scanning custom expression.

id: Optional[str]

Defines the unique ID for this Content Scanning custom expression.

maxLength32
payload: Optional[str]

Defines the custom content extraction expression used to reach content objects in the request.

class PayloadUpdateResponse:

Defines a Content Scanning custom expression.

id: Optional[str]

Defines the unique ID for this Content Scanning custom expression.

maxLength32
payload: Optional[str]

Defines the custom content extraction expression used to reach content objects in the request.