Update Data Export Rules
Update a data export rule by specifying the entire object in the request body when invoking the following endpoint:
PUT https://YourAccount.lacework.net/api/v2/DataExportRules/{mcGuid}
In the request body, specify the entire object that you want to update, for example,
{"mcGuid": "string", "filters": {"name": "string", "description": "string", "enabled": 1, "profileVersions": ["V1"]}, "intgGuidList": ["string"], "type": "Dataexport"}.
Path parameters
Data Export Rule ID
Headers
Bearer Access Token. For example, "Bearer {YourAPIToken}"
application/json
Use this attribute to specify if the access token has organization admin permissions. If the access token has only account permissions, use the Account-Name attribute to specify which account to access.
Use this attribute to specify which sub-account to access.
Request body
Example request
{
"filters": {
"enabled": 1
}
}Response
No Error
Example response
{
"data": {
"filters": {
"enabled": 1
}
}
}