ContainerRegistries
Update Container Registries
Update a container registry by specifying parameters in the request body when invoking the following endpoint:
PATCH https://YourAccount.lacework.net/api/v2/ContainerRegistries/{intgGuid}
In the request body, only specify the parameters that you want to update, for example, { "enabled" : 0 }.
patch/api/v2/ContainerRegistries/{intgGuid}
Path parameters
intgGuidstring required
The container registry's ID.
Headers
Authorizationstring required
Bearer Access Token. For example, "Bearer {YourAPIToken}"
Content-Typestring required
application/json
Org-Accessboolean
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.
Account-Namestring
Use this attribute to specify which sub-account to access.
Request body
Example request
{
"enabled": 1
}Response
No Error
Example response
{
"data": {
"enabled": 1
}
}