I am using the following method:
POST: /wiki/rest/api/group/user?name="Group Name"
I entered a JSON list with multiple account IDs in the following format:
{
"accountId": "AAAAA"
},
{
"accountId": "BBBBB"
},
{
"accountId": "CCCCC"
}
I receive an HTTP Status Code of "201 Created". This adds only one user to the group. Can anyone advise what I need to do to have the entire list of users added?