frontend

Update Recovery Flow

Use this endpoint to update a recovery flow. This endpoint behaves differently for API and browser flows and has several states:

choose_method expects flow (in the URL query) and email (in the body) to be sent and works with API- and Browser-initiated flows. For API clients and Browser clients with HTTP Header Accept: application/json it either returns a HTTP 200 OK when the form is valid and HTTP 400 OK when the form is invalid. and a HTTP 303 See Other redirect with a fresh recovery flow if the flow was otherwise invalid (e.g. expired). For Browser clients without HTTP Header Accept or with Accept: text/* it returns a HTTP 303 See Other redirect to the Recovery UI URL with the Recovery Flow ID appended. sent_email is the success state after choose_method for the link method and allows the user to request another recovery email. It works for both API and Browser-initiated flows and returns the same responses as the flow in choose_method state. passed_challenge expects a token to be sent in the URL query and given the nature of the flow ("sending a recovery link") does not have any API capabilities. The server responds with a HTTP 303 See Other redirect either to the Settings UI URL (if the link was valid) and instructs the user to update their password, or a redirect to the Recover UI URL with a new Recovery Flow ID which contains an error message that the recovery link was invalid.

More information can be found at Ory Kratos Account Recovery Documentation.

post/self-service/recovery

Query parameters

flowstring required

The Recovery Flow ID

The value for this parameter comes from flow URL Query parameter sent to your application (e.g. /recovery?flow=abcde).

tokenstring

Recovery Token

The recovery token which completes the recovery request. If the token is invalid (e.g. expired) an error will be shown to the end-user.

This parameter is usually set in a link and not used by any direct API call.

Headers

Cookiestring

HTTP Cookies

When using the SDK in a browser app, on the server side you must include the HTTP Cookie Header sent by the client to your server here. This ensures that CSRF and session cookies are respected.

Request body

OR

Response

recoveryFlow

activestring

Active, if set, contains the recovery method that is being used. It is initially not set.

expires_atstring date-time required

ExpiresAt is the time (UTC) when the request expires. If the user still wishes to update the setting, a new request has to be initiated.

idstring uuid required

ID represents the request's unique ID. When performing the recovery flow, this represents the id in the recovery ui's query parameter: http://<selfservice.flows.recovery.ui_url>?request=<id>

issued_atstring date-time required

IssuedAt is the time (UTC) when the request occurred.

request_urlstring required

RequestURL is the initial URL that was requested from Ory Kratos. It can be used to forward information contained in the URL's path or query for example.

return_tostring

ReturnTo contains the requested return_to URL.

{"stackTrail":"components:schemas:recoveryFlow:properties:state","oasType":"schema","type":"unknown","description":"State represents the state of this request:\n\nchoose_method: ask the user to choose a method (e.g. recover account via email)\nsent_email: the email has been sent to the user\npassed_challenge: the request was successful and the recovery challenge was passed."}
transient_payloadobject

TransientPayload is used to pass data from the recovery flow to hooks and email templates

typestring required

The flow type can either be api or browser.

Example response

{
  "expires_at": "2000-01-23T04:56:07.000+00:00",
  "transient_payload": "{}",
  "ui": {
    "nodes": [
      {
        "meta": {
          "label": {
            "context": "{}",
            "id": 6,
            "text": "text",
            "type": "info"
          }
        },
        "messages": [
          {
            "context": "{}",
            "id": 6,
            "text": "text",
            "type": "info"
          },
          {
            "context": "{}",
            "id": 6,
            "text": "text",
            "type": "info"
          }
        ],
        "attributes": {
          "autocomplete": "email",
          "maxlength": 1,
          "onclick": "onclick",
          "pattern": "pattern",
          "onclickTrigger": "oryWebAuthnRegistration",
          "label": {
            "context": "{}",
            "id": 6,
            "text": "text",
            "type": "info"
          },
          "type": "text",
          "required": true,
          "onload": "onload",
          "node_type": "input",
          "onloadTrigger": "oryWebAuthnRegistration",
          "name": "name",
          "disabled": true,
          "value": ""
        },
        "type": "text",
        "group": "default"
      },
      {
        "meta": {
          "label": {
            "context": "{}",
            "id": 6,
            "text": "text",
            "type": "info"
          }
        },
        "messages": [
          {
            "context": "{}",
            "id": 6,
            "text": "text",
            "type": "info"
          },
          {
            "context": "{}",
            "id": 6,
            "text": "text",
            "type": "info"
          }
        ],
        "attributes": {
          "autocomplete": "email",
          "maxlength": 1,
          "onclick": "onclick",
          "pattern": "pattern",
          "onclickTrigger": "oryWebAuthnRegistration",
          "label": {
            "context": "{}",
            "id": 6,
            "text": "text",
            "type": "info"
          },
          "type": "text",
          "required": true,
          "onload": "onload",
          "node_type": "input",
          "onloadTrigger": "oryWebAuthnRegistration",
          "name": "name",
          "disabled": true,
          "value": ""
        },
        "type": "text",
        "group": "default"
      }
    ],
    "method": "method",
    "action": "action",
    "messages": [
      {
        "context": "{}",
        "id": 6,
        "text": "text",
        "type": "info"
      },
      {
        "context": "{}",
        "id": 6,
        "text": "text",
        "type": "info"
      }
    ]
  },
  "continue_with": [
    {
      "action": "show_verification_ui",
      "flow": {
        "verifiable_address": "verifiable_address",
        "id": "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
        "url": "url"
      }
    },
    {
      "action": "show_verification_ui",
      "flow": {
        "verifiable_address": "verifiable_address",
        "id": "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
        "url": "url"
      }
    }
  ],
  "active": "active",
  "return_to": "return_to",
  "id": "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
  "state": "",
  "type": "type",
  "issued_at": "2000-01-23T04:56:07.000+00:00",
  "request_url": "request_url"
}

Changes

Changed in 15 of the 47 revisions of this API.46171217

  • 5f08e5827b5e2450See the full diff
    • added uiNodeDivisionAttributes to the ui/nodes/items/attributes response property oneOf list for the response status 200

      response-property-one-of-added

    • added uiNodeDivisionAttributes to the ui/nodes/items/attributes response property oneOf list for the response status 400

      response-property-one-of-added

    • added the new div enum value to the ui/nodes/items/type response property for the response status 200

      response-property-enum-value-added

    • added the new div enum value to the ui/nodes/items/type response property for the response status 400

      response-property-enum-value-added

    • added the new username webauthn enum value to the ui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/autocomplete response property for the response status 200

      response-property-enum-value-added

    • added the new username webauthn enum value to the ui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/autocomplete response property for the response status 400

      response-property-enum-value-added

    • added the new optional request property oneOf[updateRecoveryFlowWithCodeMethod]/recovery_address (media type: application/json)

      new-optional-request-property

    • added the new optional request property oneOf[updateRecoveryFlowWithCodeMethod]/recovery_address (media type: application/x-www-form-urlencoded)

      new-optional-request-property

    • added the new optional request property oneOf[updateRecoveryFlowWithCodeMethod]/recovery_confirm_address (media type: application/json)

      new-optional-request-property

    • added the new optional request property oneOf[updateRecoveryFlowWithCodeMethod]/recovery_confirm_address (media type: application/x-www-form-urlencoded)

      new-optional-request-property

    • added the new optional request property oneOf[updateRecoveryFlowWithCodeMethod]/recovery_select_address (media type: application/json)

      new-optional-request-property

    • added the new optional request property oneOf[updateRecoveryFlowWithCodeMethod]/recovery_select_address (media type: application/x-www-form-urlencoded)

      new-optional-request-property

    • added the new optional request property oneOf[updateRecoveryFlowWithCodeMethod]/screen (media type: application/json)

      new-optional-request-property

    • added the new optional request property oneOf[updateRecoveryFlowWithCodeMethod]/screen (media type: application/x-www-form-urlencoded)

      new-optional-request-property

    • added div discriminator mapping keys to the ui/nodes/items/attributes response property for the response status 200

      response-property-discriminator-mapping-added

    • added div discriminator mapping keys to the ui/nodes/items/attributes response property for the response status 400

      response-property-discriminator-mapping-added

    • removed the a enum value from the ui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/node_type response property for the response status 200

      response-property-enum-value-removed

    • removed the a enum value from the ui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/node_type response property for the response status 400

      response-property-enum-value-removed

    • removed the a enum value from the ui/nodes/items/attributes/oneOf[subschema #2: TextAttributes represents the attributes of a text node.]/node_type response property for the response status 200

      response-property-enum-value-removed

    • removed the a enum value from the ui/nodes/items/attributes/oneOf[subschema #2: TextAttributes represents the attributes of a text node.]/node_type response property for the response status 400

      response-property-enum-value-removed

    • removed the a enum value from the ui/nodes/items/attributes/oneOf[subschema #3: ImageAttributes represents the attributes of an image node.]/node_type response property for the response status 200

      response-property-enum-value-removed

    • removed the a enum value from the ui/nodes/items/attributes/oneOf[subschema #3: ImageAttributes represents the attributes of an image node.]/node_type response property for the response status 400

      response-property-enum-value-removed

    • removed the a enum value from the ui/nodes/items/attributes/oneOf[subschema #5: ScriptAttributes represent script nodes which load javascript.]/node_type response property for the response status 200

      response-property-enum-value-removed

    • removed the a enum value from the ui/nodes/items/attributes/oneOf[subschema #5: ScriptAttributes represent script nodes which load javascript.]/node_type response property for the response status 400

      response-property-enum-value-removed

    • removed the img enum value from the ui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/node_type response property for the response status 200

      response-property-enum-value-removed

    • removed the img enum value from the ui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/node_type response property for the response status 400

      response-property-enum-value-removed

    • removed the img enum value from the ui/nodes/items/attributes/oneOf[subschema #2: TextAttributes represents the attributes of a text node.]/node_type response property for the response status 200

      response-property-enum-value-removed

    • removed the img enum value from the ui/nodes/items/attributes/oneOf[subschema #2: TextAttributes represents the attributes of a text node.]/node_type response property for the response status 400

      response-property-enum-value-removed

    • removed the img enum value from the ui/nodes/items/attributes/oneOf[subschema #4: AnchorAttributes represents the attributes of an anchor node.]/node_type response property for the response status 200

      response-property-enum-value-removed

    • removed the img enum value from the ui/nodes/items/attributes/oneOf[subschema #4: AnchorAttributes represents the attributes of an anchor node.]/node_type response property for the response status 400

      response-property-enum-value-removed

    • removed the img enum value from the ui/nodes/items/attributes/oneOf[subschema #5: ScriptAttributes represent script nodes which load javascript.]/node_type response property for the response status 200

      response-property-enum-value-removed

    • removed the img enum value from the ui/nodes/items/attributes/oneOf[subschema #5: ScriptAttributes represent script nodes which load javascript.]/node_type response property for the response status 400

      response-property-enum-value-removed

    • removed the input enum value from the ui/nodes/items/attributes/oneOf[subschema #2: TextAttributes represents the attributes of a text node.]/node_type response property for the response status 200

      response-property-enum-value-removed

    • removed the input enum value from the ui/nodes/items/attributes/oneOf[subschema #2: TextAttributes represents the attributes of a text node.]/node_type response property for the response status 400

      response-property-enum-value-removed

    • removed the input enum value from the ui/nodes/items/attributes/oneOf[subschema #3: ImageAttributes represents the attributes of an image node.]/node_type response property for the response status 200

      response-property-enum-value-removed

    • removed the input enum value from the ui/nodes/items/attributes/oneOf[subschema #3: ImageAttributes represents the attributes of an image node.]/node_type response property for the response status 400

      response-property-enum-value-removed

    • removed the input enum value from the ui/nodes/items/attributes/oneOf[subschema #4: AnchorAttributes represents the attributes of an anchor node.]/node_type response property for the response status 200

      response-property-enum-value-removed

    • removed the input enum value from the ui/nodes/items/attributes/oneOf[subschema #4: AnchorAttributes represents the attributes of an anchor node.]/node_type response property for the response status 400

      response-property-enum-value-removed

    • removed the input enum value from the ui/nodes/items/attributes/oneOf[subschema #5: ScriptAttributes represent script nodes which load javascript.]/node_type response property for the response status 200

      response-property-enum-value-removed

    • removed the input enum value from the ui/nodes/items/attributes/oneOf[subschema #5: ScriptAttributes represent script nodes which load javascript.]/node_type response property for the response status 400

      response-property-enum-value-removed

    • removed the script enum value from the ui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/node_type response property for the response status 200

      response-property-enum-value-removed

    • removed the script enum value from the ui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/node_type response property for the response status 400

      response-property-enum-value-removed

    • removed the script enum value from the ui/nodes/items/attributes/oneOf[subschema #2: TextAttributes represents the attributes of a text node.]/node_type response property for the response status 200

      response-property-enum-value-removed

    • removed the script enum value from the ui/nodes/items/attributes/oneOf[subschema #2: TextAttributes represents the attributes of a text node.]/node_type response property for the response status 400

      response-property-enum-value-removed

    • removed the script enum value from the ui/nodes/items/attributes/oneOf[subschema #3: ImageAttributes represents the attributes of an image node.]/node_type response property for the response status 200

      response-property-enum-value-removed

    • removed the script enum value from the ui/nodes/items/attributes/oneOf[subschema #3: ImageAttributes represents the attributes of an image node.]/node_type response property for the response status 400

      response-property-enum-value-removed

    • removed the script enum value from the ui/nodes/items/attributes/oneOf[subschema #4: AnchorAttributes represents the attributes of an anchor node.]/node_type response property for the response status 200

      response-property-enum-value-removed

    • removed the script enum value from the ui/nodes/items/attributes/oneOf[subschema #4: AnchorAttributes represents the attributes of an anchor node.]/node_type response property for the response status 400

      response-property-enum-value-removed

    • removed the text enum value from the ui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/node_type response property for the response status 200

      response-property-enum-value-removed

    • removed the text enum value from the ui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/node_type response property for the response status 400

      response-property-enum-value-removed

    • removed the text enum value from the ui/nodes/items/attributes/oneOf[subschema #3: ImageAttributes represents the attributes of an image node.]/node_type response property for the response status 200

      response-property-enum-value-removed

    • removed the text enum value from the ui/nodes/items/attributes/oneOf[subschema #3: ImageAttributes represents the attributes of an image node.]/node_type response property for the response status 400

      response-property-enum-value-removed

    • removed the text enum value from the ui/nodes/items/attributes/oneOf[subschema #4: AnchorAttributes represents the attributes of an anchor node.]/node_type response property for the response status 200

      response-property-enum-value-removed

    • removed the text enum value from the ui/nodes/items/attributes/oneOf[subschema #4: AnchorAttributes represents the attributes of an anchor node.]/node_type response property for the response status 400

      response-property-enum-value-removed

    • removed the text enum value from the ui/nodes/items/attributes/oneOf[subschema #5: ScriptAttributes represent script nodes which load javascript.]/node_type response property for the response status 200

      response-property-enum-value-removed

    • removed the text enum value from the ui/nodes/items/attributes/oneOf[subschema #5: ScriptAttributes represent script nodes which load javascript.]/node_type response property for the response status 400

      response-property-enum-value-removed

  • df2fe8db73974610See the full diff
    • added continueWithRedirectBrowserTo to the continue_with/items/ response property oneOf list for the response status 200

      response-property-one-of-added

    • added continueWithRedirectBrowserTo to the continue_with/items/ response property oneOf list for the response status 400

      response-property-one-of-added

    • the continue_with/items/ response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the continue_with/items/ response's property type/format changed from / to object/ for status 400

      response-property-type-changed

    • added the new captcha enum value to the ui/nodes/items/group response property for the response status 200

      response-property-enum-value-added

    • added the new captcha enum value to the ui/nodes/items/group response property for the response status 400

      response-property-enum-value-added

    • added the new identifier_first enum value to the ui/nodes/items/group response property for the response status 200

      response-property-enum-value-added

    • added the new identifier_first enum value to the ui/nodes/items/group response property for the response status 400

      response-property-enum-value-added

    • added the new saml enum value to the ui/nodes/items/group response property for the response status 200

      response-property-enum-value-added

    • added the new saml enum value to the ui/nodes/items/group response property for the response status 400

      response-property-enum-value-added

    • added the optional property continue_with/items/oneOf[continueWithSettingsUi]/flow/url to the response with the 200 status

      response-optional-property-added

    • added the optional property continue_with/items/oneOf[continueWithSettingsUi]/flow/url to the response with the 400 status

      response-optional-property-added

    • added the optional property ui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/maxlength to the response with the 200 status

      response-optional-property-added

    • added the optional property ui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/maxlength to the response with the 400 status

      response-optional-property-added

    • added the optional property ui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/onclickTrigger to the response with the 200 status

      response-optional-property-added

    • added the optional property ui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/onclickTrigger to the response with the 400 status

      response-optional-property-added

    • added the optional property ui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/onloadTrigger to the response with the 200 status

      response-optional-property-added

    • added the optional property ui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/onloadTrigger to the response with the 400 status

      response-optional-property-added

    • added redirect_browser_to discriminator mapping keys to the continue_with/items/ response property for the response status 200

      response-property-discriminator-mapping-added

    • added redirect_browser_to discriminator mapping keys to the continue_with/items/ response property for the response status 400

      response-property-discriminator-mapping-added

  • 344e70f3542d528See the full diff
    • added the new a enum value to the ui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/node_type response property for the response status 200

      response-property-enum-value-added

    • added the new a enum value to the ui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/node_type response property for the response status 400

      response-property-enum-value-added

    • added the new a enum value to the ui/nodes/items/attributes/oneOf[subschema #2: TextAttributes represents the attributes of a text node.]/node_type response property for the response status 200

      response-property-enum-value-added

    • added the new a enum value to the ui/nodes/items/attributes/oneOf[subschema #2: TextAttributes represents the attributes of a text node.]/node_type response property for the response status 400

      response-property-enum-value-added

    • added the new a enum value to the ui/nodes/items/attributes/oneOf[subschema #3: ImageAttributes represents the attributes of an image node.]/node_type response property for the response status 200

      response-property-enum-value-added

    • added the new a enum value to the ui/nodes/items/attributes/oneOf[subschema #3: ImageAttributes represents the attributes of an image node.]/node_type response property for the response status 400

      response-property-enum-value-added

    • added the new a enum value to the ui/nodes/items/attributes/oneOf[subschema #4: AnchorAttributes represents the attributes of an anchor node.]/node_type response property for the response status 200

      response-property-enum-value-added

    • added the new a enum value to the ui/nodes/items/attributes/oneOf[subschema #4: AnchorAttributes represents the attributes of an anchor node.]/node_type response property for the response status 400

      response-property-enum-value-added

    • added the new a enum value to the ui/nodes/items/attributes/oneOf[subschema #5: ScriptAttributes represent script nodes which load javascript.]/node_type response property for the response status 200

      response-property-enum-value-added

    • added the new a enum value to the ui/nodes/items/attributes/oneOf[subschema #5: ScriptAttributes represent script nodes which load javascript.]/node_type response property for the response status 400

      response-property-enum-value-added

    • added the new img enum value to the ui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/node_type response property for the response status 200

      response-property-enum-value-added

    • added the new img enum value to the ui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/node_type response property for the response status 400

      response-property-enum-value-added

    • added the new img enum value to the ui/nodes/items/attributes/oneOf[subschema #2: TextAttributes represents the attributes of a text node.]/node_type response property for the response status 200

      response-property-enum-value-added

    • added the new img enum value to the ui/nodes/items/attributes/oneOf[subschema #2: TextAttributes represents the attributes of a text node.]/node_type response property for the response status 400

      response-property-enum-value-added

    • added the new img enum value to the ui/nodes/items/attributes/oneOf[subschema #3: ImageAttributes represents the attributes of an image node.]/node_type response property for the response status 200

      response-property-enum-value-added

    • added the new img enum value to the ui/nodes/items/attributes/oneOf[subschema #3: ImageAttributes represents the attributes of an image node.]/node_type response property for the response status 400

      response-property-enum-value-added

    • added the new img enum value to the ui/nodes/items/attributes/oneOf[subschema #4: AnchorAttributes represents the attributes of an anchor node.]/node_type response property for the response status 200

      response-property-enum-value-added

    • added the new img enum value to the ui/nodes/items/attributes/oneOf[subschema #4: AnchorAttributes represents the attributes of an anchor node.]/node_type response property for the response status 400

      response-property-enum-value-added

    • added the new img enum value to the ui/nodes/items/attributes/oneOf[subschema #5: ScriptAttributes represent script nodes which load javascript.]/node_type response property for the response status 200

      response-property-enum-value-added

    • added the new img enum value to the ui/nodes/items/attributes/oneOf[subschema #5: ScriptAttributes represent script nodes which load javascript.]/node_type response property for the response status 400

      response-property-enum-value-added

    • added the new input enum value to the ui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/node_type response property for the response status 200

      response-property-enum-value-added

    • added the new input enum value to the ui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/node_type response property for the response status 400

      response-property-enum-value-added

    • added the new input enum value to the ui/nodes/items/attributes/oneOf[subschema #2: TextAttributes represents the attributes of a text node.]/node_type response property for the response status 200

      response-property-enum-value-added

    • added the new input enum value to the ui/nodes/items/attributes/oneOf[subschema #2: TextAttributes represents the attributes of a text node.]/node_type response property for the response status 400

      response-property-enum-value-added

    • added the new input enum value to the ui/nodes/items/attributes/oneOf[subschema #3: ImageAttributes represents the attributes of an image node.]/node_type response property for the response status 200

      response-property-enum-value-added

    • added the new input enum value to the ui/nodes/items/attributes/oneOf[subschema #3: ImageAttributes represents the attributes of an image node.]/node_type response property for the response status 400

      response-property-enum-value-added

    • added the new input enum value to the ui/nodes/items/attributes/oneOf[subschema #4: AnchorAttributes represents the attributes of an anchor node.]/node_type response property for the response status 200

      response-property-enum-value-added

    • added the new input enum value to the ui/nodes/items/attributes/oneOf[subschema #4: AnchorAttributes represents the attributes of an anchor node.]/node_type response property for the response status 400

      response-property-enum-value-added

    • added the new input enum value to the ui/nodes/items/attributes/oneOf[subschema #5: ScriptAttributes represent script nodes which load javascript.]/node_type response property for the response status 200

      response-property-enum-value-added

    • added the new input enum value to the ui/nodes/items/attributes/oneOf[subschema #5: ScriptAttributes represent script nodes which load javascript.]/node_type response property for the response status 400

      response-property-enum-value-added

    • added the new passkey enum value to the ui/nodes/items/group response property for the response status 200

      response-property-enum-value-added

    • added the new passkey enum value to the ui/nodes/items/group response property for the response status 400

      response-property-enum-value-added

    • added the new script enum value to the ui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/node_type response property for the response status 200

      response-property-enum-value-added

    • added the new script enum value to the ui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/node_type response property for the response status 400

      response-property-enum-value-added

    • added the new script enum value to the ui/nodes/items/attributes/oneOf[subschema #2: TextAttributes represents the attributes of a text node.]/node_type response property for the response status 200

      response-property-enum-value-added

    • added the new script enum value to the ui/nodes/items/attributes/oneOf[subschema #2: TextAttributes represents the attributes of a text node.]/node_type response property for the response status 400

      response-property-enum-value-added

    • added the new script enum value to the ui/nodes/items/attributes/oneOf[subschema #3: ImageAttributes represents the attributes of an image node.]/node_type response property for the response status 200

      response-property-enum-value-added

    • added the new script enum value to the ui/nodes/items/attributes/oneOf[subschema #3: ImageAttributes represents the attributes of an image node.]/node_type response property for the response status 400

      response-property-enum-value-added

    • added the new script enum value to the ui/nodes/items/attributes/oneOf[subschema #4: AnchorAttributes represents the attributes of an anchor node.]/node_type response property for the response status 200

      response-property-enum-value-added

    • added the new script enum value to the ui/nodes/items/attributes/oneOf[subschema #4: AnchorAttributes represents the attributes of an anchor node.]/node_type response property for the response status 400

      response-property-enum-value-added

    • added the new script enum value to the ui/nodes/items/attributes/oneOf[subschema #5: ScriptAttributes represent script nodes which load javascript.]/node_type response property for the response status 200

      response-property-enum-value-added

    • added the new script enum value to the ui/nodes/items/attributes/oneOf[subschema #5: ScriptAttributes represent script nodes which load javascript.]/node_type response property for the response status 400

      response-property-enum-value-added

    • added the new text enum value to the ui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/node_type response property for the response status 200

      response-property-enum-value-added

    • added the new text enum value to the ui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/node_type response property for the response status 400

      response-property-enum-value-added

    • added the new text enum value to the ui/nodes/items/attributes/oneOf[subschema #2: TextAttributes represents the attributes of a text node.]/node_type response property for the response status 200

      response-property-enum-value-added

    • added the new text enum value to the ui/nodes/items/attributes/oneOf[subschema #2: TextAttributes represents the attributes of a text node.]/node_type response property for the response status 400

      response-property-enum-value-added

    • added the new text enum value to the ui/nodes/items/attributes/oneOf[subschema #3: ImageAttributes represents the attributes of an image node.]/node_type response property for the response status 200

      response-property-enum-value-added

    • added the new text enum value to the ui/nodes/items/attributes/oneOf[subschema #3: ImageAttributes represents the attributes of an image node.]/node_type response property for the response status 400

      response-property-enum-value-added

    • added the new text enum value to the ui/nodes/items/attributes/oneOf[subschema #4: AnchorAttributes represents the attributes of an anchor node.]/node_type response property for the response status 200

      response-property-enum-value-added

    • added the new text enum value to the ui/nodes/items/attributes/oneOf[subschema #4: AnchorAttributes represents the attributes of an anchor node.]/node_type response property for the response status 400

      response-property-enum-value-added

    • added the new text enum value to the ui/nodes/items/attributes/oneOf[subschema #5: ScriptAttributes represent script nodes which load javascript.]/node_type response property for the response status 200

      response-property-enum-value-added

    • added the new text enum value to the ui/nodes/items/attributes/oneOf[subschema #5: ScriptAttributes represent script nodes which load javascript.]/node_type response property for the response status 400

      response-property-enum-value-added

    • added the new optional request property oneOf[updateRecoveryFlowWithCodeMethod]/transient_payload (media type: application/json)

      new-optional-request-property

    • added the new optional request property oneOf[updateRecoveryFlowWithCodeMethod]/transient_payload (media type: application/x-www-form-urlencoded)

      new-optional-request-property

    • added the new optional request property oneOf[updateRecoveryFlowWithLinkMethod]/transient_payload (media type: application/json)

      new-optional-request-property

    • added the new optional request property oneOf[updateRecoveryFlowWithLinkMethod]/transient_payload (media type: application/x-www-form-urlencoded)

      new-optional-request-property

    • added the optional property transient_payload to the response with the 200 status

      response-optional-property-added

    • added the optional property transient_payload to the response with the 400 status

      response-optional-property-added

    • added the optional property ui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/onload to the response with the 200 status

      response-optional-property-added

    • added the optional property ui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/onload to the response with the 400 status

      response-optional-property-added

  • 4f071812f3ea28See the full diff
    • the state response's property type/format changed from string/ to / for status 200

      response-property-type-changed

    • the state response's property type/format changed from string/ to / for status 400

      response-property-type-changed

    • added the optional property continue_with to the response with the 200 status

      response-optional-property-added

    • added the optional property continue_with to the response with the 400 status

      response-optional-property-added

    • removed the choose_method enum value from the state response property for the response status 200

      response-property-enum-value-removed

    • removed the choose_method enum value from the state response property for the response status 400

      response-property-enum-value-removed

    • removed the passed_challenge enum value from the state response property for the response status 200

      response-property-enum-value-removed

    • removed the passed_challenge enum value from the state response property for the response status 400

      response-property-enum-value-removed

    • removed the sent_email enum value from the state response property for the response status 200

      response-property-enum-value-removed

    • removed the sent_email enum value from the state response property for the response status 400

      response-property-enum-value-removed

    This revision also has 4 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog

  • 2e602390c3aa579See the full diff
    • request property oneOf[updateRecoveryFlowWithCodeMethod]/method was restricted to a list of enum values (media type: application/json)

      request-property-became-enum

    • request property oneOf[updateRecoveryFlowWithCodeMethod]/method was restricted to a list of enum values (media type: application/x-www-form-urlencoded)

      request-property-became-enum

    • request property oneOf[updateRecoveryFlowWithLinkMethod]/method was restricted to a list of enum values (media type: application/json)

      request-property-became-enum

    • request property oneOf[updateRecoveryFlowWithLinkMethod]/method was restricted to a list of enum values (media type: application/x-www-form-urlencoded)

      request-property-became-enum

    • removed the required property message from the response with the 422 status

      response-required-property-removed

    • removed the optional property code from the response with the 422 status

      response-optional-property-removed

    • removed the optional property debug from the response with the 422 status

      response-optional-property-removed

    • removed the optional property details from the response with the 422 status

      response-optional-property-removed

    • removed the optional property id from the response with the 422 status

      response-optional-property-removed

    • removed the optional property reason from the response with the 422 status

      response-optional-property-removed

    • removed the optional property request from the response with the 422 status

      response-optional-property-removed

    • removed the optional property status from the response with the 422 status

      response-optional-property-removed

    • added the new code enum value to the request property oneOf[updateRecoveryFlowWithCodeMethod]/method (media type: application/json)

      request-property-enum-value-added

    • added the new code enum value to the request property oneOf[updateRecoveryFlowWithCodeMethod]/method (media type: application/x-www-form-urlencoded)

      request-property-enum-value-added

    • added the new code enum value to the request property oneOf[updateRecoveryFlowWithLinkMethod]/method (media type: application/json)

      request-property-enum-value-added

    • added the new code enum value to the request property oneOf[updateRecoveryFlowWithLinkMethod]/method (media type: application/x-www-form-urlencoded)

      request-property-enum-value-added

    • added the new link enum value to the request property oneOf[updateRecoveryFlowWithCodeMethod]/method (media type: application/json)

      request-property-enum-value-added

    • added the new link enum value to the request property oneOf[updateRecoveryFlowWithCodeMethod]/method (media type: application/x-www-form-urlencoded)

      request-property-enum-value-added

    • added the new link enum value to the request property oneOf[updateRecoveryFlowWithLinkMethod]/method (media type: application/json)

      request-property-enum-value-added

    • added the new link enum value to the request property oneOf[updateRecoveryFlowWithLinkMethod]/method (media type: application/x-www-form-urlencoded)

      request-property-enum-value-added

    • added the optional property error to the response with the 422 status

      response-optional-property-added

    This revision also has 1 change that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog

  • b6e5ffa30d4c46213See the full diff
    • removed submitSelfServiceRecoveryFlowWithLinkMethodBody from the request body oneOf list (media type: application/json)

      request-body-one-of-removed

    • removed submitSelfServiceRecoveryFlowWithLinkMethodBody from the request body oneOf list (media type: application/x-www-form-urlencoded)

      request-body-one-of-removed

    • the id response's property type/format changed from string/uuid4 to string/uuid for status 200

      response-property-type-changed

    • the id response's property type/format changed from string/uuid4 to string/uuid for status 400

      response-property-type-changed

    • added the new button enum value to the ui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/type response property for the response status 200

      response-property-enum-value-added

    • added the new button enum value to the ui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/type response property for the response status 400

      response-property-enum-value-added

    • added the new checkbox enum value to the ui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/type response property for the response status 200

      response-property-enum-value-added

    • added the new checkbox enum value to the ui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/type response property for the response status 400

      response-property-enum-value-added

    • added the new code enum value to the ui/nodes/items/group response property for the response status 200

      response-property-enum-value-added

    • added the new code enum value to the ui/nodes/items/group response property for the response status 400

      response-property-enum-value-added

    • added the new date enum value to the ui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/type response property for the response status 200

      response-property-enum-value-added

    • added the new date enum value to the ui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/type response property for the response status 400

      response-property-enum-value-added

    • added the new datetime-local enum value to the ui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/type response property for the response status 200

      response-property-enum-value-added

    • added the new datetime-local enum value to the ui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/type response property for the response status 400

      response-property-enum-value-added

    • added the new email enum value to the ui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/type response property for the response status 200

      response-property-enum-value-added

    • added the new email enum value to the ui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/type response property for the response status 400

      response-property-enum-value-added

    • added the new error enum value to the ui/messages/items/type response property for the response status 200

      response-property-enum-value-added

    • added the new error enum value to the ui/messages/items/type response property for the response status 400

      response-property-enum-value-added

    • added the new error enum value to the ui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/label/type response property for the response status 200

      response-property-enum-value-added

    • added the new error enum value to the ui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/label/type response property for the response status 400

      response-property-enum-value-added

    • added the new error enum value to the ui/nodes/items/attributes/oneOf[subschema #2: TextAttributes represents the attributes of a text node.]/text/type response property for the response status 200

      response-property-enum-value-added

    • added the new error enum value to the ui/nodes/items/attributes/oneOf[subschema #2: TextAttributes represents the attributes of a text node.]/text/type response property for the response status 400

      response-property-enum-value-added

    • added the new error enum value to the ui/nodes/items/attributes/oneOf[subschema #4: AnchorAttributes represents the attributes of an anchor node.]/title/type response property for the response status 200

      response-property-enum-value-added

    • added the new error enum value to the ui/nodes/items/attributes/oneOf[subschema #4: AnchorAttributes represents the attributes of an anchor node.]/title/type response property for the response status 400

      response-property-enum-value-added

    • added the new error enum value to the ui/nodes/items/messages/items/type response property for the response status 200

      response-property-enum-value-added

    • added the new error enum value to the ui/nodes/items/messages/items/type response property for the response status 400

      response-property-enum-value-added

    • added the new error enum value to the ui/nodes/items/meta/label/type response property for the response status 200

      response-property-enum-value-added

    • added the new error enum value to the ui/nodes/items/meta/label/type response property for the response status 400

      response-property-enum-value-added

    • added the new hidden enum value to the ui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/type response property for the response status 200

      response-property-enum-value-added

    • added the new hidden enum value to the ui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/type response property for the response status 400

      response-property-enum-value-added

    • added the new info enum value to the ui/messages/items/type response property for the response status 200

      response-property-enum-value-added

    • added the new info enum value to the ui/messages/items/type response property for the response status 400

      response-property-enum-value-added

    • added the new info enum value to the ui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/label/type response property for the response status 200

      response-property-enum-value-added

    • added the new info enum value to the ui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/label/type response property for the response status 400

      response-property-enum-value-added

    • added the new info enum value to the ui/nodes/items/attributes/oneOf[subschema #2: TextAttributes represents the attributes of a text node.]/text/type response property for the response status 200

      response-property-enum-value-added

    • added the new info enum value to the ui/nodes/items/attributes/oneOf[subschema #2: TextAttributes represents the attributes of a text node.]/text/type response property for the response status 400

      response-property-enum-value-added

    • added the new info enum value to the ui/nodes/items/attributes/oneOf[subschema #4: AnchorAttributes represents the attributes of an anchor node.]/title/type response property for the response status 200

      response-property-enum-value-added

    • added the new info enum value to the ui/nodes/items/attributes/oneOf[subschema #4: AnchorAttributes represents the attributes of an anchor node.]/title/type response property for the response status 400

      response-property-enum-value-added

    • added the new info enum value to the ui/nodes/items/messages/items/type response property for the response status 200

      response-property-enum-value-added

    • added the new info enum value to the ui/nodes/items/messages/items/type response property for the response status 400

      response-property-enum-value-added

    • added the new info enum value to the ui/nodes/items/meta/label/type response property for the response status 200

      response-property-enum-value-added

    • added the new info enum value to the ui/nodes/items/meta/label/type response property for the response status 400

      response-property-enum-value-added

    • added the new number enum value to the ui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/type response property for the response status 200

      response-property-enum-value-added

    • added the new number enum value to the ui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/type response property for the response status 400

      response-property-enum-value-added

    • added the new password enum value to the ui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/type response property for the response status 200

      response-property-enum-value-added

    • added the new password enum value to the ui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/type response property for the response status 400

      response-property-enum-value-added

    • added the new submit enum value to the ui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/type response property for the response status 200

      response-property-enum-value-added

    • added the new submit enum value to the ui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/type response property for the response status 400

      response-property-enum-value-added

    • added the new success enum value to the ui/messages/items/type response property for the response status 200

      response-property-enum-value-added

    • added the new success enum value to the ui/messages/items/type response property for the response status 400

      response-property-enum-value-added

    • added the new success enum value to the ui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/label/type response property for the response status 200

      response-property-enum-value-added

    • added the new success enum value to the ui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/label/type response property for the response status 400

      response-property-enum-value-added

    • added the new success enum value to the ui/nodes/items/attributes/oneOf[subschema #2: TextAttributes represents the attributes of a text node.]/text/type response property for the response status 200

      response-property-enum-value-added

    • added the new success enum value to the ui/nodes/items/attributes/oneOf[subschema #2: TextAttributes represents the attributes of a text node.]/text/type response property for the response status 400

      response-property-enum-value-added

    • added the new success enum value to the ui/nodes/items/attributes/oneOf[subschema #4: AnchorAttributes represents the attributes of an anchor node.]/title/type response property for the response status 200

      response-property-enum-value-added

    • added the new success enum value to the ui/nodes/items/attributes/oneOf[subschema #4: AnchorAttributes represents the attributes of an anchor node.]/title/type response property for the response status 400

      response-property-enum-value-added

    • added the new success enum value to the ui/nodes/items/messages/items/type response property for the response status 200

      response-property-enum-value-added

    • added the new success enum value to the ui/nodes/items/messages/items/type response property for the response status 400

      response-property-enum-value-added

    • added the new success enum value to the ui/nodes/items/meta/label/type response property for the response status 200

      response-property-enum-value-added

    • added the new success enum value to the ui/nodes/items/meta/label/type response property for the response status 400

      response-property-enum-value-added

    • added the new tel enum value to the ui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/type response property for the response status 200

      response-property-enum-value-added

    • added the new tel enum value to the ui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/type response property for the response status 400

      response-property-enum-value-added

    • added the new text enum value to the ui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/type response property for the response status 200

      response-property-enum-value-added

    • added the new text enum value to the ui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/type response property for the response status 400

      response-property-enum-value-added

    • added the new url enum value to the ui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/type response property for the response status 200

      response-property-enum-value-added

    • added the new url enum value to the ui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/type response property for the response status 400

      response-property-enum-value-added

    • api operation id submitSelfServiceRecoveryFlow removed and replaced with updateRecoveryFlow

      api-operation-id-removed

    • api tag frontend added

      api-tag-added

    • api tag v0alpha2 removed

      api-tag-removed

    • added code mapping keys to the request discriminator (media type: application/json)

      request-body-discriminator-mapping-added

    • added code mapping keys to the request discriminator (media type: application/x-www-form-urlencoded)

      request-body-discriminator-mapping-added

    • mapped value for key link changed from submitSelfServiceRecoveryFlowWithLinkMethodBody to updateRecoveryFlowWithLinkMethod from the request discriminator (media type: application/json)

      request-body-discriminator-mapping-changed

    • mapped value for key link changed from submitSelfServiceRecoveryFlowWithLinkMethodBody to updateRecoveryFlowWithLinkMethod from the request discriminator (media type: application/x-www-form-urlencoded)

      request-body-discriminator-mapping-changed

    • added updateRecoveryFlowWithLinkMethod updateRecoveryFlowWithCodeMethod to the request body oneOf list (media type: application/json)

      request-body-one-of-added

    • added updateRecoveryFlowWithLinkMethod updateRecoveryFlowWithCodeMethod to the request body oneOf list (media type: application/x-www-form-urlencoded)

      request-body-one-of-added

    • added the non-success response with the status 422

      response-non-success-status-added

    • removed the non-success response with the status 500

      response-non-success-status-removed

    • added the optional property ui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/autocomplete to the response with the 200 status

      response-optional-property-added

    • added the optional property ui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/autocomplete to the response with the 400 status

      response-optional-property-added

    This revision also has 58 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog

  • fca041c7721f1267See the full diff
    • request body became required

      request-body-became-required

    • added the new a enum value to the ui/nodes/items/type response property for the response status 200

      response-property-enum-value-added

    • added the new a enum value to the ui/nodes/items/type response property for the response status 400

      response-property-enum-value-added

    • added the new default enum value to the ui/nodes/items/group response property for the response status 200

      response-property-enum-value-added

    • added the new default enum value to the ui/nodes/items/group response property for the response status 400

      response-property-enum-value-added

    • added the new img enum value to the ui/nodes/items/type response property for the response status 200

      response-property-enum-value-added

    • added the new img enum value to the ui/nodes/items/type response property for the response status 400

      response-property-enum-value-added

    • added the new input enum value to the ui/nodes/items/type response property for the response status 200

      response-property-enum-value-added

    • added the new input enum value to the ui/nodes/items/type response property for the response status 400

      response-property-enum-value-added

    • added the new link enum value to the ui/nodes/items/group response property for the response status 200

      response-property-enum-value-added

    • added the new link enum value to the ui/nodes/items/group response property for the response status 400

      response-property-enum-value-added

    • added the new lookup_secret enum value to the ui/nodes/items/group response property for the response status 200

      response-property-enum-value-added

    • added the new lookup_secret enum value to the ui/nodes/items/group response property for the response status 400

      response-property-enum-value-added

    • added the new oidc enum value to the ui/nodes/items/group response property for the response status 200

      response-property-enum-value-added

    • added the new oidc enum value to the ui/nodes/items/group response property for the response status 400

      response-property-enum-value-added

    • added the new password enum value to the ui/nodes/items/group response property for the response status 200

      response-property-enum-value-added

    • added the new password enum value to the ui/nodes/items/group response property for the response status 400

      response-property-enum-value-added

    • added the new profile enum value to the ui/nodes/items/group response property for the response status 200

      response-property-enum-value-added

    • added the new profile enum value to the ui/nodes/items/group response property for the response status 400

      response-property-enum-value-added

    • added the new script enum value to the ui/nodes/items/type response property for the response status 200

      response-property-enum-value-added

    • added the new script enum value to the ui/nodes/items/type response property for the response status 400

      response-property-enum-value-added

    • added the new text enum value to the ui/nodes/items/type response property for the response status 200

      response-property-enum-value-added

    • added the new text enum value to the ui/nodes/items/type response property for the response status 400

      response-property-enum-value-added

    • added the new totp enum value to the ui/nodes/items/group response property for the response status 200

      response-property-enum-value-added

    • added the new totp enum value to the ui/nodes/items/group response property for the response status 400

      response-property-enum-value-added

    • added the new webauthn enum value to the ui/nodes/items/group response property for the response status 200

      response-property-enum-value-added

    • added the new webauthn enum value to the ui/nodes/items/group response property for the response status 400

      response-property-enum-value-added

    • added the new optional header request parameter Cookie

      new-optional-request-parameter

    • the response property type became required for the status 200

      response-property-became-required

    • the response property type became required for the status 400

      response-property-became-required

    • added a img discriminator mapping keys to the ui/nodes/items/attributes response property for the response status 200

      response-property-discriminator-mapping-added

    • added a img discriminator mapping keys to the ui/nodes/items/attributes response property for the response status 400

      response-property-discriminator-mapping-added

    • removed anchor image discriminator mapping keys from the ui/nodes/items/attributes response property for the response status 200

      response-property-discriminator-mapping-deleted

    • removed anchor image discriminator mapping keys from the ui/nodes/items/attributes response property for the response status 400

      response-property-discriminator-mapping-deleted

    This revision also has 2 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog

    • added the non-success response with the status 410

      response-non-success-status-added

    • added the non-success response with the status 303

      response-non-success-status-added

    • removed the non-success response with the status 302

      response-non-success-status-removed

    • the response property ui/nodes/items/attributes/oneOf[subschema #3: ImageAttributes represents the attributes of an image node.]/height became required for the status 200

      response-property-became-required

    • the response property ui/nodes/items/attributes/oneOf[subschema #3: ImageAttributes represents the attributes of an image node.]/height became required for the status 400

      response-property-became-required

    • the response property ui/nodes/items/attributes/oneOf[subschema #3: ImageAttributes represents the attributes of an image node.]/width became required for the status 200

      response-property-became-required

    • the response property ui/nodes/items/attributes/oneOf[subschema #3: ImageAttributes represents the attributes of an image node.]/width became required for the status 400

      response-property-became-required

    • added the required property ui/nodes/items/attributes/oneOf[subschema #5: ScriptAttributes represent script nodes which load javascript.]/nonce to the response with the 200 status

      response-required-property-added

    • added the required property ui/nodes/items/attributes/oneOf[subschema #5: ScriptAttributes represent script nodes which load javascript.]/nonce to the response with the 400 status

      response-required-property-added

  • c55ed8ad9f0c227See the full diff
    • added uiNodeScriptAttributes to the ui/nodes/items/attributes response property oneOf list for the response status 200

      response-property-one-of-added

    • added uiNodeScriptAttributes to the ui/nodes/items/attributes response property oneOf list for the response status 400

      response-property-one-of-added

    • api tag v0alpha2 added

      api-tag-added

    • api tag v0alpha1 removed

      api-tag-removed

    • added the optional property error/id to the response with the 500 status

      response-optional-property-added

    • added the optional property return_to to the response with the 200 status

      response-optional-property-added

    • added the optional property return_to to the response with the 400 status

      response-optional-property-added

    • added the optional property ui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/onclick to the response with the 200 status

      response-optional-property-added

    • added the optional property ui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/onclick to the response with the 400 status

      response-optional-property-added

    • added the optional property ui/nodes/items/attributes/oneOf[subschema #3: ImageAttributes represents the attributes of an image node.]/height to the response with the 200 status

      response-optional-property-added

    • added the optional property ui/nodes/items/attributes/oneOf[subschema #3: ImageAttributes represents the attributes of an image node.]/height to the response with the 400 status

      response-optional-property-added

    • added the optional property ui/nodes/items/attributes/oneOf[subschema #3: ImageAttributes represents the attributes of an image node.]/width to the response with the 200 status

      response-optional-property-added

    • added the optional property ui/nodes/items/attributes/oneOf[subschema #3: ImageAttributes represents the attributes of an image node.]/width to the response with the 400 status

      response-optional-property-added

    • added discriminator to ui/nodes/items/attributes response property for the response status 200

      response-property-discriminator-added

    • added discriminator to ui/nodes/items/attributes response property for the response status 400

      response-property-discriminator-added

    • added the required property ui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/node_type to the response with the 200 status

      response-required-property-added

    • added the required property ui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/node_type to the response with the 400 status

      response-required-property-added

    • added the required property ui/nodes/items/attributes/oneOf[subschema #2: TextAttributes represents the attributes of a text node.]/id to the response with the 200 status

      response-required-property-added

    • added the required property ui/nodes/items/attributes/oneOf[subschema #2: TextAttributes represents the attributes of a text node.]/id to the response with the 400 status

      response-required-property-added

    • added the required property ui/nodes/items/attributes/oneOf[subschema #2: TextAttributes represents the attributes of a text node.]/node_type to the response with the 200 status

      response-required-property-added

    • added the required property ui/nodes/items/attributes/oneOf[subschema #2: TextAttributes represents the attributes of a text node.]/node_type to the response with the 400 status

      response-required-property-added

    • added the required property ui/nodes/items/attributes/oneOf[subschema #3: ImageAttributes represents the attributes of an image node.]/id to the response with the 200 status

      response-required-property-added

    • added the required property ui/nodes/items/attributes/oneOf[subschema #3: ImageAttributes represents the attributes of an image node.]/id to the response with the 400 status

      response-required-property-added

    • added the required property ui/nodes/items/attributes/oneOf[subschema #3: ImageAttributes represents the attributes of an image node.]/node_type to the response with the 200 status

      response-required-property-added

    • added the required property ui/nodes/items/attributes/oneOf[subschema #3: ImageAttributes represents the attributes of an image node.]/node_type to the response with the 400 status

      response-required-property-added

    • added the required property ui/nodes/items/attributes/oneOf[subschema #4: AnchorAttributes represents the attributes of an anchor node.]/id to the response with the 200 status

      response-required-property-added

    • added the required property ui/nodes/items/attributes/oneOf[subschema #4: AnchorAttributes represents the attributes of an anchor node.]/id to the response with the 400 status

      response-required-property-added

    • added the required property ui/nodes/items/attributes/oneOf[subschema #4: AnchorAttributes represents the attributes of an anchor node.]/node_type to the response with the 200 status

      response-required-property-added

    • added the required property ui/nodes/items/attributes/oneOf[subschema #4: AnchorAttributes represents the attributes of an anchor node.]/node_type to the response with the 400 status

      response-required-property-added

    This revision also has 4 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog