CentralCSP
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.

GET
/v1/workspaces/{workspaceId}/websites/{websiteId}/usage-alerts/recipients

Authorization

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"    }  ]}