APIUsage
List website usage-alert recipients
Returns the members emailed when this website passes 80% of its usage limit and again when it reaches 100%. A recipient who has lost access to the website is returned with hasAccess: false and is not emailed until access is restored.
Requires the manager role on the website.
AuthorizationBearer <token>
An OpenID Connect access token issued by Keycloak, acting as the signed-in user.
In: header
Path Parameters
workspaceId*string
websiteId*string
Response Body
application/json
curl -X GET "https://api-next.centralcsp.com/v1/workspaces/string/websites/string/usage-alerts/recipients"{ "recipients": [ { "memberId": "string", "hasAccess": true, "email": "string", "firstName": "string", "lastName": "string" } ]}Set workspace usage-alert recipients PUT
Replaces the recipient list. Send an empty array to turn workspace usage emails off. Every id must belong to a member of this workspace.
Set website usage-alert recipients PUT
Replaces the recipient list for this website. Send an empty array to turn its usage emails off. Every id must belong to a member of this workspace.