Reorder security realmsedit

Reorder security realms. NOTE: This is a beta feature.

Requestedit

POST /api/v1/platform/configuration/security/realms/_reorder

Request bodyedit

(SecurityRealmsReorderRequest) (required) The reorder request

Responsesedit

200

(EmptyResponse) The reorder request was successful

400

(BasicFailedReply) * Invalid ids . (code: security_realm.invalid_ids) * Missing ids . (code: security_realm.missing_ids)

449

(BasicFailedReply) Elevated permissions are required. (code: root.unauthorized.rbac.elevated_permissions_required)

To perform this operation, you must be authenticated by means of one of the following methods: apiKey, basicAuth.

Request exampleedit

curl -XPOST {{hostname}}/api/v1/platform/configuration/security/realms/_reorder \
-u $CLOUD_USER:$CLOUD_KEY \
-H 'Content-Type: application/json' \
-d '
{
   "realms" : [
      "string"
   ]
}
'