Remove members from a profile in the Administration module. The limit is 500 members per call.
URL
{RMUrl}/api/admin/profiles/<profile_id>/members
REQUEST METHOD
DELETE
URL PARAMETER
profile_id: ID of the profile from which members will be removed.
FORM CONTENT
Members (Required): List of the members to be removed from the profile by ID.
FORM CONTENT EXAMPLE
{
"Members": [
{ "Id": "7B06EE69-12D6-11E5-80D9-00155D00020D" },
{ "Id": "CC109461-15F2-11E5-80D9-00155D00020D" }]
}
SUCCESS RESPONSE
HTTP status code 200: Response content example:
{
"Items": [
{
"Id": "E7C2580F-C94F-4496-B652-208734C38C8C",
"Result": {
"ValidationCode": "Removed",
"Message": "The person or group \"Person 1\" was removed from the profile.",
"Success": true
}
}
]
}