Hi, I am experiencing another issue around import groups. When payload of this API contains the existing groups, it throws 500 without any helpful error message. I am using typescript SDK. First time I ran below API worked but subsequent API call is throwing 500, Is this expected behavior?
curl --location '<host>/api/rest/2.0/groups/import' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <token>' \
--data '{
"delete_unspecified_groups": false,
"dry_run": false,
"groups": [
{
"display_name": "abc",
"group_identifier": "RandomGroup",
"type": "LOCAL_GROUP",
"visibility": "SHARABLE"
}
]
}'