deleteUserAttributes()

in src/lib/service/custos-service/custos-service-users.js [116:127]


    deleteUserAttributes({clientId, attributes, usernames}) {
        return this.custosService.axiosInstance.delete(
            `${CustosService.ENDPOINTS.USERS}/attributes`,
            {
                data: {
                    client_id: clientId,
                    attributes: attributes,
                    users: usernames
                }
            }
        );
    }