ApiManagementUsers
POST
/v1/mgmt/family/settingsAuthorization
Descope Project ID and Management Key AuthorizationBearer <token>
Project ID:Management Key as bearer token.
In: header
Request Body
application/json
enabled?boolean
maxFamilyMembers?integer
Format
int32allowMultipleFamiliesUsers?boolean
Set the project's family account settings, using a valid management key.
curl -X POST "https://api.descope.com/v1/mgmt/family/settings" \ -H "Content-Type: application/json" \ -d '{}'{ "enabled": true, "maxFamilyMembers": 0, "allowMultipleFamiliesUsers": true}export interface Response {enabled?: booleanmaxFamilyMembers?: numberallowMultipleFamiliesUsers?: boolean} Was this helpful?