Reorder security realms

POST /platform/configuration/security/realms/_reorder

Reorder security realms.

Body Required

The reorder request

  • realms array[string] Required

    The list of security realms in the desired order

Responses

  • The reorder request was successful

    Additional properties are allowed.

    • Invalid ids . (code: security_realm.invalid_ids)
    • Missing ids . (code: security_realm.missing_ids)
    Hide headers attribute Show headers attribute
    • The error codes associated with the response

      Values are security_realm.invalid_ids or security_realm.missing_ids.

    Hide response attribute Show response attribute object
    • errors array[object] Required

      A list of errors that occurred in the failing request

      Hide errors attributes Show errors attributes object
      • code string Required

        A structured code representing the error type that occurred

      • message string Required

        A human readable message describing the error that occurred

      • fields array[string]

        If the error can be tied to a specific field or fields in the user request, this lists those fields

POST /platform/configuration/security/realms/_reorder
curl \
 -X POST https://{{hostname}}/api/v1/platform/configuration/security/realms/_reorder \
 -d '{"realms":["string"]}'
Request examples
{
  "realms": [
    "string"
  ]
}
Response examples (200)
{}
Response examples (400)
# Headers
x-cloud-error-codes: security_realm.invalid_ids

# Payload
{
  "errors": [
    {
      "code": "string",
      "message": "string",
      "fields": [
        "string"
      ]
    }
  ]
}