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.
Query parameters
The Recovery Flow ID
The value for this parameter comes from flow URL Query parameter sent to your application (e.g. /recovery?flow=abcde).
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
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
Response
recoveryFlow
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
- ▲
added
uiNodeDivisionAttributesto theui/nodes/items/attributesresponse propertyoneOflist for the response status200response-property-one-of-added
- ▲
added
uiNodeDivisionAttributesto theui/nodes/items/attributesresponse propertyoneOflist for the response status400response-property-one-of-added
- ●
added the new
divenum value to theui/nodes/items/typeresponse property for the response status200response-property-enum-value-added
- ●
added the new
divenum value to theui/nodes/items/typeresponse property for the response status400response-property-enum-value-added
- ●
added the new
username webauthnenum value to theui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/autocompleteresponse property for the response status200response-property-enum-value-added
- ●
added the new
username webauthnenum value to theui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/autocompleteresponse property for the response status400response-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
divdiscriminator mapping keys to theui/nodes/items/attributesresponse property for the response status200response-property-discriminator-mapping-added
- ○
added
divdiscriminator mapping keys to theui/nodes/items/attributesresponse property for the response status400response-property-discriminator-mapping-added
- ○
removed the
aenum value from theui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/node_typeresponse property for the response status200response-property-enum-value-removed
- ○
removed the
aenum value from theui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/node_typeresponse property for the response status400response-property-enum-value-removed
- ○
removed the
aenum value from theui/nodes/items/attributes/oneOf[subschema #2: TextAttributes represents the attributes of a text node.]/node_typeresponse property for the response status200response-property-enum-value-removed
- ○
removed the
aenum value from theui/nodes/items/attributes/oneOf[subschema #2: TextAttributes represents the attributes of a text node.]/node_typeresponse property for the response status400response-property-enum-value-removed
- ○
removed the
aenum value from theui/nodes/items/attributes/oneOf[subschema #3: ImageAttributes represents the attributes of an image node.]/node_typeresponse property for the response status200response-property-enum-value-removed
- ○
removed the
aenum value from theui/nodes/items/attributes/oneOf[subschema #3: ImageAttributes represents the attributes of an image node.]/node_typeresponse property for the response status400response-property-enum-value-removed
- ○
removed the
aenum value from theui/nodes/items/attributes/oneOf[subschema #5: ScriptAttributes represent script nodes which load javascript.]/node_typeresponse property for the response status200response-property-enum-value-removed
- ○
removed the
aenum value from theui/nodes/items/attributes/oneOf[subschema #5: ScriptAttributes represent script nodes which load javascript.]/node_typeresponse property for the response status400response-property-enum-value-removed
- ○
removed the
imgenum value from theui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/node_typeresponse property for the response status200response-property-enum-value-removed
- ○
removed the
imgenum value from theui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/node_typeresponse property for the response status400response-property-enum-value-removed
- ○
removed the
imgenum value from theui/nodes/items/attributes/oneOf[subschema #2: TextAttributes represents the attributes of a text node.]/node_typeresponse property for the response status200response-property-enum-value-removed
- ○
removed the
imgenum value from theui/nodes/items/attributes/oneOf[subschema #2: TextAttributes represents the attributes of a text node.]/node_typeresponse property for the response status400response-property-enum-value-removed
- ○
removed the
imgenum value from theui/nodes/items/attributes/oneOf[subschema #4: AnchorAttributes represents the attributes of an anchor node.]/node_typeresponse property for the response status200response-property-enum-value-removed
- ○
removed the
imgenum value from theui/nodes/items/attributes/oneOf[subschema #4: AnchorAttributes represents the attributes of an anchor node.]/node_typeresponse property for the response status400response-property-enum-value-removed
- ○
removed the
imgenum value from theui/nodes/items/attributes/oneOf[subschema #5: ScriptAttributes represent script nodes which load javascript.]/node_typeresponse property for the response status200response-property-enum-value-removed
- ○
removed the
imgenum value from theui/nodes/items/attributes/oneOf[subschema #5: ScriptAttributes represent script nodes which load javascript.]/node_typeresponse property for the response status400response-property-enum-value-removed
- ○
removed the
inputenum value from theui/nodes/items/attributes/oneOf[subschema #2: TextAttributes represents the attributes of a text node.]/node_typeresponse property for the response status200response-property-enum-value-removed
- ○
removed the
inputenum value from theui/nodes/items/attributes/oneOf[subschema #2: TextAttributes represents the attributes of a text node.]/node_typeresponse property for the response status400response-property-enum-value-removed
- ○
removed the
inputenum value from theui/nodes/items/attributes/oneOf[subschema #3: ImageAttributes represents the attributes of an image node.]/node_typeresponse property for the response status200response-property-enum-value-removed
- ○
removed the
inputenum value from theui/nodes/items/attributes/oneOf[subschema #3: ImageAttributes represents the attributes of an image node.]/node_typeresponse property for the response status400response-property-enum-value-removed
- ○
removed the
inputenum value from theui/nodes/items/attributes/oneOf[subschema #4: AnchorAttributes represents the attributes of an anchor node.]/node_typeresponse property for the response status200response-property-enum-value-removed
- ○
removed the
inputenum value from theui/nodes/items/attributes/oneOf[subschema #4: AnchorAttributes represents the attributes of an anchor node.]/node_typeresponse property for the response status400response-property-enum-value-removed
- ○
removed the
inputenum value from theui/nodes/items/attributes/oneOf[subschema #5: ScriptAttributes represent script nodes which load javascript.]/node_typeresponse property for the response status200response-property-enum-value-removed
- ○
removed the
inputenum value from theui/nodes/items/attributes/oneOf[subschema #5: ScriptAttributes represent script nodes which load javascript.]/node_typeresponse property for the response status400response-property-enum-value-removed
- ○
removed the
scriptenum value from theui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/node_typeresponse property for the response status200response-property-enum-value-removed
- ○
removed the
scriptenum value from theui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/node_typeresponse property for the response status400response-property-enum-value-removed
- ○
removed the
scriptenum value from theui/nodes/items/attributes/oneOf[subschema #2: TextAttributes represents the attributes of a text node.]/node_typeresponse property for the response status200response-property-enum-value-removed
- ○
removed the
scriptenum value from theui/nodes/items/attributes/oneOf[subschema #2: TextAttributes represents the attributes of a text node.]/node_typeresponse property for the response status400response-property-enum-value-removed
- ○
removed the
scriptenum value from theui/nodes/items/attributes/oneOf[subschema #3: ImageAttributes represents the attributes of an image node.]/node_typeresponse property for the response status200response-property-enum-value-removed
- ○
removed the
scriptenum value from theui/nodes/items/attributes/oneOf[subschema #3: ImageAttributes represents the attributes of an image node.]/node_typeresponse property for the response status400response-property-enum-value-removed
- ○
removed the
scriptenum value from theui/nodes/items/attributes/oneOf[subschema #4: AnchorAttributes represents the attributes of an anchor node.]/node_typeresponse property for the response status200response-property-enum-value-removed
- ○
removed the
scriptenum value from theui/nodes/items/attributes/oneOf[subschema #4: AnchorAttributes represents the attributes of an anchor node.]/node_typeresponse property for the response status400response-property-enum-value-removed
- ○
removed the
textenum value from theui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/node_typeresponse property for the response status200response-property-enum-value-removed
- ○
removed the
textenum value from theui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/node_typeresponse property for the response status400response-property-enum-value-removed
- ○
removed the
textenum value from theui/nodes/items/attributes/oneOf[subschema #3: ImageAttributes represents the attributes of an image node.]/node_typeresponse property for the response status200response-property-enum-value-removed
- ○
removed the
textenum value from theui/nodes/items/attributes/oneOf[subschema #3: ImageAttributes represents the attributes of an image node.]/node_typeresponse property for the response status400response-property-enum-value-removed
- ○
removed the
textenum value from theui/nodes/items/attributes/oneOf[subschema #4: AnchorAttributes represents the attributes of an anchor node.]/node_typeresponse property for the response status200response-property-enum-value-removed
- ○
removed the
textenum value from theui/nodes/items/attributes/oneOf[subschema #4: AnchorAttributes represents the attributes of an anchor node.]/node_typeresponse property for the response status400response-property-enum-value-removed
- ○
removed the
textenum value from theui/nodes/items/attributes/oneOf[subschema #5: ScriptAttributes represent script nodes which load javascript.]/node_typeresponse property for the response status200response-property-enum-value-removed
- ○
removed the
textenum value from theui/nodes/items/attributes/oneOf[subschema #5: ScriptAttributes represent script nodes which load javascript.]/node_typeresponse property for the response status400response-property-enum-value-removed
- ▲
- ▲
added
continueWithRedirectBrowserToto thecontinue_with/items/response propertyoneOflist for the response status200response-property-one-of-added
- ▲
added
continueWithRedirectBrowserToto thecontinue_with/items/response propertyoneOflist for the response status400response-property-one-of-added
- ▲
the
continue_with/items/response's property type/format changed from/toobject/for status200response-property-type-changed
- ▲
the
continue_with/items/response's property type/format changed from/toobject/for status400response-property-type-changed
- ●
added the new
captchaenum value to theui/nodes/items/groupresponse property for the response status200response-property-enum-value-added
- ●
added the new
captchaenum value to theui/nodes/items/groupresponse property for the response status400response-property-enum-value-added
- ●
added the new
identifier_firstenum value to theui/nodes/items/groupresponse property for the response status200response-property-enum-value-added
- ●
added the new
identifier_firstenum value to theui/nodes/items/groupresponse property for the response status400response-property-enum-value-added
- ●
added the new
samlenum value to theui/nodes/items/groupresponse property for the response status200response-property-enum-value-added
- ●
added the new
samlenum value to theui/nodes/items/groupresponse property for the response status400response-property-enum-value-added
- ○
added the optional property
continue_with/items/oneOf[continueWithSettingsUi]/flow/urlto the response with the200statusresponse-optional-property-added
- ○
added the optional property
continue_with/items/oneOf[continueWithSettingsUi]/flow/urlto the response with the400statusresponse-optional-property-added
- ○
added the optional property
ui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/maxlengthto the response with the200statusresponse-optional-property-added
- ○
added the optional property
ui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/maxlengthto the response with the400statusresponse-optional-property-added
- ○
added the optional property
ui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/onclickTriggerto the response with the200statusresponse-optional-property-added
- ○
added the optional property
ui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/onclickTriggerto the response with the400statusresponse-optional-property-added
- ○
added the optional property
ui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/onloadTriggerto the response with the200statusresponse-optional-property-added
- ○
added the optional property
ui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/onloadTriggerto the response with the400statusresponse-optional-property-added
- ○
added
redirect_browser_todiscriminator mapping keys to thecontinue_with/items/response property for the response status200response-property-discriminator-mapping-added
- ○
added
redirect_browser_todiscriminator mapping keys to thecontinue_with/items/response property for the response status400response-property-discriminator-mapping-added
- ▲
- ●
added the new
aenum value to theui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/node_typeresponse property for the response status200response-property-enum-value-added
- ●
added the new
aenum value to theui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/node_typeresponse property for the response status400response-property-enum-value-added
- ●
added the new
aenum value to theui/nodes/items/attributes/oneOf[subschema #2: TextAttributes represents the attributes of a text node.]/node_typeresponse property for the response status200response-property-enum-value-added
- ●
added the new
aenum value to theui/nodes/items/attributes/oneOf[subschema #2: TextAttributes represents the attributes of a text node.]/node_typeresponse property for the response status400response-property-enum-value-added
- ●
added the new
aenum value to theui/nodes/items/attributes/oneOf[subschema #3: ImageAttributes represents the attributes of an image node.]/node_typeresponse property for the response status200response-property-enum-value-added
- ●
added the new
aenum value to theui/nodes/items/attributes/oneOf[subschema #3: ImageAttributes represents the attributes of an image node.]/node_typeresponse property for the response status400response-property-enum-value-added
- ●
added the new
aenum value to theui/nodes/items/attributes/oneOf[subschema #4: AnchorAttributes represents the attributes of an anchor node.]/node_typeresponse property for the response status200response-property-enum-value-added
- ●
added the new
aenum value to theui/nodes/items/attributes/oneOf[subschema #4: AnchorAttributes represents the attributes of an anchor node.]/node_typeresponse property for the response status400response-property-enum-value-added
- ●
added the new
aenum value to theui/nodes/items/attributes/oneOf[subschema #5: ScriptAttributes represent script nodes which load javascript.]/node_typeresponse property for the response status200response-property-enum-value-added
- ●
added the new
aenum value to theui/nodes/items/attributes/oneOf[subschema #5: ScriptAttributes represent script nodes which load javascript.]/node_typeresponse property for the response status400response-property-enum-value-added
- ●
added the new
imgenum value to theui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/node_typeresponse property for the response status200response-property-enum-value-added
- ●
added the new
imgenum value to theui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/node_typeresponse property for the response status400response-property-enum-value-added
- ●
added the new
imgenum value to theui/nodes/items/attributes/oneOf[subschema #2: TextAttributes represents the attributes of a text node.]/node_typeresponse property for the response status200response-property-enum-value-added
- ●
added the new
imgenum value to theui/nodes/items/attributes/oneOf[subschema #2: TextAttributes represents the attributes of a text node.]/node_typeresponse property for the response status400response-property-enum-value-added
- ●
added the new
imgenum value to theui/nodes/items/attributes/oneOf[subschema #3: ImageAttributes represents the attributes of an image node.]/node_typeresponse property for the response status200response-property-enum-value-added
- ●
added the new
imgenum value to theui/nodes/items/attributes/oneOf[subschema #3: ImageAttributes represents the attributes of an image node.]/node_typeresponse property for the response status400response-property-enum-value-added
- ●
added the new
imgenum value to theui/nodes/items/attributes/oneOf[subschema #4: AnchorAttributes represents the attributes of an anchor node.]/node_typeresponse property for the response status200response-property-enum-value-added
- ●
added the new
imgenum value to theui/nodes/items/attributes/oneOf[subschema #4: AnchorAttributes represents the attributes of an anchor node.]/node_typeresponse property for the response status400response-property-enum-value-added
- ●
added the new
imgenum value to theui/nodes/items/attributes/oneOf[subschema #5: ScriptAttributes represent script nodes which load javascript.]/node_typeresponse property for the response status200response-property-enum-value-added
- ●
added the new
imgenum value to theui/nodes/items/attributes/oneOf[subschema #5: ScriptAttributes represent script nodes which load javascript.]/node_typeresponse property for the response status400response-property-enum-value-added
- ●
added the new
inputenum value to theui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/node_typeresponse property for the response status200response-property-enum-value-added
- ●
added the new
inputenum value to theui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/node_typeresponse property for the response status400response-property-enum-value-added
- ●
added the new
inputenum value to theui/nodes/items/attributes/oneOf[subschema #2: TextAttributes represents the attributes of a text node.]/node_typeresponse property for the response status200response-property-enum-value-added
- ●
added the new
inputenum value to theui/nodes/items/attributes/oneOf[subschema #2: TextAttributes represents the attributes of a text node.]/node_typeresponse property for the response status400response-property-enum-value-added
- ●
added the new
inputenum value to theui/nodes/items/attributes/oneOf[subschema #3: ImageAttributes represents the attributes of an image node.]/node_typeresponse property for the response status200response-property-enum-value-added
- ●
added the new
inputenum value to theui/nodes/items/attributes/oneOf[subschema #3: ImageAttributes represents the attributes of an image node.]/node_typeresponse property for the response status400response-property-enum-value-added
- ●
added the new
inputenum value to theui/nodes/items/attributes/oneOf[subschema #4: AnchorAttributes represents the attributes of an anchor node.]/node_typeresponse property for the response status200response-property-enum-value-added
- ●
added the new
inputenum value to theui/nodes/items/attributes/oneOf[subschema #4: AnchorAttributes represents the attributes of an anchor node.]/node_typeresponse property for the response status400response-property-enum-value-added
- ●
added the new
inputenum value to theui/nodes/items/attributes/oneOf[subschema #5: ScriptAttributes represent script nodes which load javascript.]/node_typeresponse property for the response status200response-property-enum-value-added
- ●
added the new
inputenum value to theui/nodes/items/attributes/oneOf[subschema #5: ScriptAttributes represent script nodes which load javascript.]/node_typeresponse property for the response status400response-property-enum-value-added
- ●
added the new
passkeyenum value to theui/nodes/items/groupresponse property for the response status200response-property-enum-value-added
- ●
added the new
passkeyenum value to theui/nodes/items/groupresponse property for the response status400response-property-enum-value-added
- ●
added the new
scriptenum value to theui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/node_typeresponse property for the response status200response-property-enum-value-added
- ●
added the new
scriptenum value to theui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/node_typeresponse property for the response status400response-property-enum-value-added
- ●
added the new
scriptenum value to theui/nodes/items/attributes/oneOf[subschema #2: TextAttributes represents the attributes of a text node.]/node_typeresponse property for the response status200response-property-enum-value-added
- ●
added the new
scriptenum value to theui/nodes/items/attributes/oneOf[subschema #2: TextAttributes represents the attributes of a text node.]/node_typeresponse property for the response status400response-property-enum-value-added
- ●
added the new
scriptenum value to theui/nodes/items/attributes/oneOf[subschema #3: ImageAttributes represents the attributes of an image node.]/node_typeresponse property for the response status200response-property-enum-value-added
- ●
added the new
scriptenum value to theui/nodes/items/attributes/oneOf[subschema #3: ImageAttributes represents the attributes of an image node.]/node_typeresponse property for the response status400response-property-enum-value-added
- ●
added the new
scriptenum value to theui/nodes/items/attributes/oneOf[subschema #4: AnchorAttributes represents the attributes of an anchor node.]/node_typeresponse property for the response status200response-property-enum-value-added
- ●
added the new
scriptenum value to theui/nodes/items/attributes/oneOf[subschema #4: AnchorAttributes represents the attributes of an anchor node.]/node_typeresponse property for the response status400response-property-enum-value-added
- ●
added the new
scriptenum value to theui/nodes/items/attributes/oneOf[subschema #5: ScriptAttributes represent script nodes which load javascript.]/node_typeresponse property for the response status200response-property-enum-value-added
- ●
added the new
scriptenum value to theui/nodes/items/attributes/oneOf[subschema #5: ScriptAttributes represent script nodes which load javascript.]/node_typeresponse property for the response status400response-property-enum-value-added
- ●
added the new
textenum value to theui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/node_typeresponse property for the response status200response-property-enum-value-added
- ●
added the new
textenum value to theui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/node_typeresponse property for the response status400response-property-enum-value-added
- ●
added the new
textenum value to theui/nodes/items/attributes/oneOf[subschema #2: TextAttributes represents the attributes of a text node.]/node_typeresponse property for the response status200response-property-enum-value-added
- ●
added the new
textenum value to theui/nodes/items/attributes/oneOf[subschema #2: TextAttributes represents the attributes of a text node.]/node_typeresponse property for the response status400response-property-enum-value-added
- ●
added the new
textenum value to theui/nodes/items/attributes/oneOf[subschema #3: ImageAttributes represents the attributes of an image node.]/node_typeresponse property for the response status200response-property-enum-value-added
- ●
added the new
textenum value to theui/nodes/items/attributes/oneOf[subschema #3: ImageAttributes represents the attributes of an image node.]/node_typeresponse property for the response status400response-property-enum-value-added
- ●
added the new
textenum value to theui/nodes/items/attributes/oneOf[subschema #4: AnchorAttributes represents the attributes of an anchor node.]/node_typeresponse property for the response status200response-property-enum-value-added
- ●
added the new
textenum value to theui/nodes/items/attributes/oneOf[subschema #4: AnchorAttributes represents the attributes of an anchor node.]/node_typeresponse property for the response status400response-property-enum-value-added
- ●
added the new
textenum value to theui/nodes/items/attributes/oneOf[subschema #5: ScriptAttributes represent script nodes which load javascript.]/node_typeresponse property for the response status200response-property-enum-value-added
- ●
added the new
textenum value to theui/nodes/items/attributes/oneOf[subschema #5: ScriptAttributes represent script nodes which load javascript.]/node_typeresponse property for the response status400response-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_payloadto the response with the200statusresponse-optional-property-added
- ○
added the optional property
transient_payloadto the response with the400statusresponse-optional-property-added
- ○
added the optional property
ui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/onloadto the response with the200statusresponse-optional-property-added
- ○
added the optional property
ui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/onloadto the response with the400statusresponse-optional-property-added
- ●
- ▲
the
stateresponse's property type/format changed fromstring/to/for status200response-property-type-changed
- ▲
the
stateresponse's property type/format changed fromstring/to/for status400response-property-type-changed
- ○
added the optional property
continue_withto the response with the200statusresponse-optional-property-added
- ○
added the optional property
continue_withto the response with the400statusresponse-optional-property-added
- ○
removed the
choose_methodenum value from thestateresponse property for the response status200response-property-enum-value-removed
- ○
removed the
choose_methodenum value from thestateresponse property for the response status400response-property-enum-value-removed
- ○
removed the
passed_challengeenum value from thestateresponse property for the response status200response-property-enum-value-removed
- ○
removed the
passed_challengeenum value from thestateresponse property for the response status400response-property-enum-value-removed
- ○
removed the
sent_emailenum value from thestateresponse property for the response status200response-property-enum-value-removed
- ○
removed the
sent_emailenum value from thestateresponse property for the response status400response-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
- ▲
- ▲
request property
oneOf[updateRecoveryFlowWithCodeMethod]/methodwas restricted to a list of enum values (media type: application/json)request-property-became-enum
- ▲
request property
oneOf[updateRecoveryFlowWithCodeMethod]/methodwas restricted to a list of enum values (media type: application/x-www-form-urlencoded)request-property-became-enum
- ▲
request property
oneOf[updateRecoveryFlowWithLinkMethod]/methodwas restricted to a list of enum values (media type: application/json)request-property-became-enum
- ▲
request property
oneOf[updateRecoveryFlowWithLinkMethod]/methodwas restricted to a list of enum values (media type: application/x-www-form-urlencoded)request-property-became-enum
- ▲
removed the required property
messagefrom the response with the422statusresponse-required-property-removed
- ●
removed the optional property
codefrom the response with the422statusresponse-optional-property-removed
- ●
removed the optional property
debugfrom the response with the422statusresponse-optional-property-removed
- ●
removed the optional property
detailsfrom the response with the422statusresponse-optional-property-removed
- ●
removed the optional property
idfrom the response with the422statusresponse-optional-property-removed
- ●
removed the optional property
reasonfrom the response with the422statusresponse-optional-property-removed
- ●
removed the optional property
requestfrom the response with the422statusresponse-optional-property-removed
- ●
removed the optional property
statusfrom the response with the422statusresponse-optional-property-removed
- ○
added the new
codeenum value to the request propertyoneOf[updateRecoveryFlowWithCodeMethod]/method(media type: application/json)request-property-enum-value-added
- ○
added the new
codeenum value to the request propertyoneOf[updateRecoveryFlowWithCodeMethod]/method(media type: application/x-www-form-urlencoded)request-property-enum-value-added
- ○
added the new
codeenum value to the request propertyoneOf[updateRecoveryFlowWithLinkMethod]/method(media type: application/json)request-property-enum-value-added
- ○
added the new
codeenum value to the request propertyoneOf[updateRecoveryFlowWithLinkMethod]/method(media type: application/x-www-form-urlencoded)request-property-enum-value-added
- ○
added the new
linkenum value to the request propertyoneOf[updateRecoveryFlowWithCodeMethod]/method(media type: application/json)request-property-enum-value-added
- ○
added the new
linkenum value to the request propertyoneOf[updateRecoveryFlowWithCodeMethod]/method(media type: application/x-www-form-urlencoded)request-property-enum-value-added
- ○
added the new
linkenum value to the request propertyoneOf[updateRecoveryFlowWithLinkMethod]/method(media type: application/json)request-property-enum-value-added
- ○
added the new
linkenum value to the request propertyoneOf[updateRecoveryFlowWithLinkMethod]/method(media type: application/x-www-form-urlencoded)request-property-enum-value-added
- ○
added the optional property
errorto the response with the422statusresponse-optional-property-added
This revision also has 1 change that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog
- ▲
- ▲
removed
submitSelfServiceRecoveryFlowWithLinkMethodBodyfrom the request bodyoneOflist (media type: application/json)request-body-one-of-removed
- ▲
removed
submitSelfServiceRecoveryFlowWithLinkMethodBodyfrom the request bodyoneOflist (media type: application/x-www-form-urlencoded)request-body-one-of-removed
- ▲
the
idresponse's property type/format changed fromstring/uuid4tostring/uuidfor status200response-property-type-changed
- ▲
the
idresponse's property type/format changed fromstring/uuid4tostring/uuidfor status400response-property-type-changed
- ●
added the new
buttonenum value to theui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/typeresponse property for the response status200response-property-enum-value-added
- ●
added the new
buttonenum value to theui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/typeresponse property for the response status400response-property-enum-value-added
- ●
added the new
checkboxenum value to theui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/typeresponse property for the response status200response-property-enum-value-added
- ●
added the new
checkboxenum value to theui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/typeresponse property for the response status400response-property-enum-value-added
- ●
added the new
codeenum value to theui/nodes/items/groupresponse property for the response status200response-property-enum-value-added
- ●
added the new
codeenum value to theui/nodes/items/groupresponse property for the response status400response-property-enum-value-added
- ●
added the new
dateenum value to theui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/typeresponse property for the response status200response-property-enum-value-added
- ●
added the new
dateenum value to theui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/typeresponse property for the response status400response-property-enum-value-added
- ●
added the new
datetime-localenum value to theui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/typeresponse property for the response status200response-property-enum-value-added
- ●
added the new
datetime-localenum value to theui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/typeresponse property for the response status400response-property-enum-value-added
- ●
added the new
emailenum value to theui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/typeresponse property for the response status200response-property-enum-value-added
- ●
added the new
emailenum value to theui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/typeresponse property for the response status400response-property-enum-value-added
- ●
added the new
errorenum value to theui/messages/items/typeresponse property for the response status200response-property-enum-value-added
- ●
added the new
errorenum value to theui/messages/items/typeresponse property for the response status400response-property-enum-value-added
- ●
added the new
errorenum value to theui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/label/typeresponse property for the response status200response-property-enum-value-added
- ●
added the new
errorenum value to theui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/label/typeresponse property for the response status400response-property-enum-value-added
- ●
added the new
errorenum value to theui/nodes/items/attributes/oneOf[subschema #2: TextAttributes represents the attributes of a text node.]/text/typeresponse property for the response status200response-property-enum-value-added
- ●
added the new
errorenum value to theui/nodes/items/attributes/oneOf[subschema #2: TextAttributes represents the attributes of a text node.]/text/typeresponse property for the response status400response-property-enum-value-added
- ●
added the new
errorenum value to theui/nodes/items/attributes/oneOf[subschema #4: AnchorAttributes represents the attributes of an anchor node.]/title/typeresponse property for the response status200response-property-enum-value-added
- ●
added the new
errorenum value to theui/nodes/items/attributes/oneOf[subschema #4: AnchorAttributes represents the attributes of an anchor node.]/title/typeresponse property for the response status400response-property-enum-value-added
- ●
added the new
errorenum value to theui/nodes/items/messages/items/typeresponse property for the response status200response-property-enum-value-added
- ●
added the new
errorenum value to theui/nodes/items/messages/items/typeresponse property for the response status400response-property-enum-value-added
- ●
added the new
errorenum value to theui/nodes/items/meta/label/typeresponse property for the response status200response-property-enum-value-added
- ●
added the new
errorenum value to theui/nodes/items/meta/label/typeresponse property for the response status400response-property-enum-value-added
- ●
added the new
hiddenenum value to theui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/typeresponse property for the response status200response-property-enum-value-added
- ●
added the new
hiddenenum value to theui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/typeresponse property for the response status400response-property-enum-value-added
- ●
added the new
infoenum value to theui/messages/items/typeresponse property for the response status200response-property-enum-value-added
- ●
added the new
infoenum value to theui/messages/items/typeresponse property for the response status400response-property-enum-value-added
- ●
added the new
infoenum value to theui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/label/typeresponse property for the response status200response-property-enum-value-added
- ●
added the new
infoenum value to theui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/label/typeresponse property for the response status400response-property-enum-value-added
- ●
added the new
infoenum value to theui/nodes/items/attributes/oneOf[subschema #2: TextAttributes represents the attributes of a text node.]/text/typeresponse property for the response status200response-property-enum-value-added
- ●
added the new
infoenum value to theui/nodes/items/attributes/oneOf[subschema #2: TextAttributes represents the attributes of a text node.]/text/typeresponse property for the response status400response-property-enum-value-added
- ●
added the new
infoenum value to theui/nodes/items/attributes/oneOf[subschema #4: AnchorAttributes represents the attributes of an anchor node.]/title/typeresponse property for the response status200response-property-enum-value-added
- ●
added the new
infoenum value to theui/nodes/items/attributes/oneOf[subschema #4: AnchorAttributes represents the attributes of an anchor node.]/title/typeresponse property for the response status400response-property-enum-value-added
- ●
added the new
infoenum value to theui/nodes/items/messages/items/typeresponse property for the response status200response-property-enum-value-added
- ●
added the new
infoenum value to theui/nodes/items/messages/items/typeresponse property for the response status400response-property-enum-value-added
- ●
added the new
infoenum value to theui/nodes/items/meta/label/typeresponse property for the response status200response-property-enum-value-added
- ●
added the new
infoenum value to theui/nodes/items/meta/label/typeresponse property for the response status400response-property-enum-value-added
- ●
added the new
numberenum value to theui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/typeresponse property for the response status200response-property-enum-value-added
- ●
added the new
numberenum value to theui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/typeresponse property for the response status400response-property-enum-value-added
- ●
added the new
passwordenum value to theui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/typeresponse property for the response status200response-property-enum-value-added
- ●
added the new
passwordenum value to theui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/typeresponse property for the response status400response-property-enum-value-added
- ●
added the new
submitenum value to theui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/typeresponse property for the response status200response-property-enum-value-added
- ●
added the new
submitenum value to theui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/typeresponse property for the response status400response-property-enum-value-added
- ●
added the new
successenum value to theui/messages/items/typeresponse property for the response status200response-property-enum-value-added
- ●
added the new
successenum value to theui/messages/items/typeresponse property for the response status400response-property-enum-value-added
- ●
added the new
successenum value to theui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/label/typeresponse property for the response status200response-property-enum-value-added
- ●
added the new
successenum value to theui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/label/typeresponse property for the response status400response-property-enum-value-added
- ●
added the new
successenum value to theui/nodes/items/attributes/oneOf[subschema #2: TextAttributes represents the attributes of a text node.]/text/typeresponse property for the response status200response-property-enum-value-added
- ●
added the new
successenum value to theui/nodes/items/attributes/oneOf[subschema #2: TextAttributes represents the attributes of a text node.]/text/typeresponse property for the response status400response-property-enum-value-added
- ●
added the new
successenum value to theui/nodes/items/attributes/oneOf[subschema #4: AnchorAttributes represents the attributes of an anchor node.]/title/typeresponse property for the response status200response-property-enum-value-added
- ●
added the new
successenum value to theui/nodes/items/attributes/oneOf[subschema #4: AnchorAttributes represents the attributes of an anchor node.]/title/typeresponse property for the response status400response-property-enum-value-added
- ●
added the new
successenum value to theui/nodes/items/messages/items/typeresponse property for the response status200response-property-enum-value-added
- ●
added the new
successenum value to theui/nodes/items/messages/items/typeresponse property for the response status400response-property-enum-value-added
- ●
added the new
successenum value to theui/nodes/items/meta/label/typeresponse property for the response status200response-property-enum-value-added
- ●
added the new
successenum value to theui/nodes/items/meta/label/typeresponse property for the response status400response-property-enum-value-added
- ●
added the new
telenum value to theui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/typeresponse property for the response status200response-property-enum-value-added
- ●
added the new
telenum value to theui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/typeresponse property for the response status400response-property-enum-value-added
- ●
added the new
textenum value to theui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/typeresponse property for the response status200response-property-enum-value-added
- ●
added the new
textenum value to theui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/typeresponse property for the response status400response-property-enum-value-added
- ●
added the new
urlenum value to theui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/typeresponse property for the response status200response-property-enum-value-added
- ●
added the new
urlenum value to theui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/typeresponse property for the response status400response-property-enum-value-added
- ○
api operation id
submitSelfServiceRecoveryFlowremoved and replaced withupdateRecoveryFlowapi-operation-id-removed
- ○
api tag
frontendaddedapi-tag-added
- ○
api tag
v0alpha2removedapi-tag-removed
- ○
added
codemapping keys to the request discriminator (media type: application/json)request-body-discriminator-mapping-added
- ○
added
codemapping keys to the request discriminator (media type: application/x-www-form-urlencoded)request-body-discriminator-mapping-added
- ○
mapped value for key
linkchanged fromsubmitSelfServiceRecoveryFlowWithLinkMethodBodytoupdateRecoveryFlowWithLinkMethodfrom the request discriminator (media type: application/json)request-body-discriminator-mapping-changed
- ○
mapped value for key
linkchanged fromsubmitSelfServiceRecoveryFlowWithLinkMethodBodytoupdateRecoveryFlowWithLinkMethodfrom the request discriminator (media type: application/x-www-form-urlencoded)request-body-discriminator-mapping-changed
- ○
added
updateRecoveryFlowWithLinkMethodupdateRecoveryFlowWithCodeMethodto the request bodyoneOflist (media type: application/json)request-body-one-of-added
- ○
added
updateRecoveryFlowWithLinkMethodupdateRecoveryFlowWithCodeMethodto the request bodyoneOflist (media type: application/x-www-form-urlencoded)request-body-one-of-added
- ○
added the non-success response with the status
422response-non-success-status-added
- ○
removed the non-success response with the status
500response-non-success-status-removed
- ○
added the optional property
ui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/autocompleteto the response with the200statusresponse-optional-property-added
- ○
added the optional property
ui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/autocompleteto the response with the400statusresponse-optional-property-added
This revision also has 58 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog
- ▲
- ▲
request body became required
request-body-became-required
- ●
added the new
aenum value to theui/nodes/items/typeresponse property for the response status200response-property-enum-value-added
- ●
added the new
aenum value to theui/nodes/items/typeresponse property for the response status400response-property-enum-value-added
- ●
added the new
defaultenum value to theui/nodes/items/groupresponse property for the response status200response-property-enum-value-added
- ●
added the new
defaultenum value to theui/nodes/items/groupresponse property for the response status400response-property-enum-value-added
- ●
added the new
imgenum value to theui/nodes/items/typeresponse property for the response status200response-property-enum-value-added
- ●
added the new
imgenum value to theui/nodes/items/typeresponse property for the response status400response-property-enum-value-added
- ●
added the new
inputenum value to theui/nodes/items/typeresponse property for the response status200response-property-enum-value-added
- ●
added the new
inputenum value to theui/nodes/items/typeresponse property for the response status400response-property-enum-value-added
- ●
added the new
linkenum value to theui/nodes/items/groupresponse property for the response status200response-property-enum-value-added
- ●
added the new
linkenum value to theui/nodes/items/groupresponse property for the response status400response-property-enum-value-added
- ●
added the new
lookup_secretenum value to theui/nodes/items/groupresponse property for the response status200response-property-enum-value-added
- ●
added the new
lookup_secretenum value to theui/nodes/items/groupresponse property for the response status400response-property-enum-value-added
- ●
added the new
oidcenum value to theui/nodes/items/groupresponse property for the response status200response-property-enum-value-added
- ●
added the new
oidcenum value to theui/nodes/items/groupresponse property for the response status400response-property-enum-value-added
- ●
added the new
passwordenum value to theui/nodes/items/groupresponse property for the response status200response-property-enum-value-added
- ●
added the new
passwordenum value to theui/nodes/items/groupresponse property for the response status400response-property-enum-value-added
- ●
added the new
profileenum value to theui/nodes/items/groupresponse property for the response status200response-property-enum-value-added
- ●
added the new
profileenum value to theui/nodes/items/groupresponse property for the response status400response-property-enum-value-added
- ●
added the new
scriptenum value to theui/nodes/items/typeresponse property for the response status200response-property-enum-value-added
- ●
added the new
scriptenum value to theui/nodes/items/typeresponse property for the response status400response-property-enum-value-added
- ●
added the new
textenum value to theui/nodes/items/typeresponse property for the response status200response-property-enum-value-added
- ●
added the new
textenum value to theui/nodes/items/typeresponse property for the response status400response-property-enum-value-added
- ●
added the new
totpenum value to theui/nodes/items/groupresponse property for the response status200response-property-enum-value-added
- ●
added the new
totpenum value to theui/nodes/items/groupresponse property for the response status400response-property-enum-value-added
- ●
added the new
webauthnenum value to theui/nodes/items/groupresponse property for the response status200response-property-enum-value-added
- ●
added the new
webauthnenum value to theui/nodes/items/groupresponse property for the response status400response-property-enum-value-added
- ○
added the new optional
headerrequest parameterCookienew-optional-request-parameter
- ○
the response property
typebecame required for the status200response-property-became-required
- ○
the response property
typebecame required for the status400response-property-became-required
- ○
added
aimgdiscriminator mapping keys to theui/nodes/items/attributesresponse property for the response status200response-property-discriminator-mapping-added
- ○
added
aimgdiscriminator mapping keys to theui/nodes/items/attributesresponse property for the response status400response-property-discriminator-mapping-added
- ○
removed
anchorimagediscriminator mapping keys from theui/nodes/items/attributesresponse property for the response status200response-property-discriminator-mapping-deleted
- ○
removed
anchorimagediscriminator mapping keys from theui/nodes/items/attributesresponse property for the response status400response-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
410response-non-success-status-added
- ○
- ○
added the non-success response with the status
303response-non-success-status-added
- ○
removed the non-success response with the status
302response-non-success-status-removed
- ○
the response property
ui/nodes/items/attributes/oneOf[subschema #3: ImageAttributes represents the attributes of an image node.]/heightbecame required for the status200response-property-became-required
- ○
the response property
ui/nodes/items/attributes/oneOf[subschema #3: ImageAttributes represents the attributes of an image node.]/heightbecame required for the status400response-property-became-required
- ○
the response property
ui/nodes/items/attributes/oneOf[subschema #3: ImageAttributes represents the attributes of an image node.]/widthbecame required for the status200response-property-became-required
- ○
the response property
ui/nodes/items/attributes/oneOf[subschema #3: ImageAttributes represents the attributes of an image node.]/widthbecame required for the status400response-property-became-required
- ○
added the required property
ui/nodes/items/attributes/oneOf[subschema #5: ScriptAttributes represent script nodes which load javascript.]/nonceto the response with the200statusresponse-required-property-added
- ○
added the required property
ui/nodes/items/attributes/oneOf[subschema #5: ScriptAttributes represent script nodes which load javascript.]/nonceto the response with the400statusresponse-required-property-added
- ○
- ▲
added
uiNodeScriptAttributesto theui/nodes/items/attributesresponse propertyoneOflist for the response status200response-property-one-of-added
- ▲
added
uiNodeScriptAttributesto theui/nodes/items/attributesresponse propertyoneOflist for the response status400response-property-one-of-added
- ○
api tag
v0alpha2addedapi-tag-added
- ○
api tag
v0alpha1removedapi-tag-removed
- ○
added the optional property
error/idto the response with the500statusresponse-optional-property-added
- ○
added the optional property
return_toto the response with the200statusresponse-optional-property-added
- ○
added the optional property
return_toto the response with the400statusresponse-optional-property-added
- ○
added the optional property
ui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/onclickto the response with the200statusresponse-optional-property-added
- ○
added the optional property
ui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/onclickto the response with the400statusresponse-optional-property-added
- ○
added the optional property
ui/nodes/items/attributes/oneOf[subschema #3: ImageAttributes represents the attributes of an image node.]/heightto the response with the200statusresponse-optional-property-added
- ○
added the optional property
ui/nodes/items/attributes/oneOf[subschema #3: ImageAttributes represents the attributes of an image node.]/heightto the response with the400statusresponse-optional-property-added
- ○
added the optional property
ui/nodes/items/attributes/oneOf[subschema #3: ImageAttributes represents the attributes of an image node.]/widthto the response with the200statusresponse-optional-property-added
- ○
added the optional property
ui/nodes/items/attributes/oneOf[subschema #3: ImageAttributes represents the attributes of an image node.]/widthto the response with the400statusresponse-optional-property-added
- ○
added discriminator to
ui/nodes/items/attributesresponse property for the response status200response-property-discriminator-added
- ○
added discriminator to
ui/nodes/items/attributesresponse property for the response status400response-property-discriminator-added
- ○
added the required property
ui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/node_typeto the response with the200statusresponse-required-property-added
- ○
added the required property
ui/nodes/items/attributes/oneOf[uiNodeInputAttributes]/node_typeto the response with the400statusresponse-required-property-added
- ○
added the required property
ui/nodes/items/attributes/oneOf[subschema #2: TextAttributes represents the attributes of a text node.]/idto the response with the200statusresponse-required-property-added
- ○
added the required property
ui/nodes/items/attributes/oneOf[subschema #2: TextAttributes represents the attributes of a text node.]/idto the response with the400statusresponse-required-property-added
- ○
added the required property
ui/nodes/items/attributes/oneOf[subschema #2: TextAttributes represents the attributes of a text node.]/node_typeto the response with the200statusresponse-required-property-added
- ○
added the required property
ui/nodes/items/attributes/oneOf[subschema #2: TextAttributes represents the attributes of a text node.]/node_typeto the response with the400statusresponse-required-property-added
- ○
added the required property
ui/nodes/items/attributes/oneOf[subschema #3: ImageAttributes represents the attributes of an image node.]/idto the response with the200statusresponse-required-property-added
- ○
added the required property
ui/nodes/items/attributes/oneOf[subschema #3: ImageAttributes represents the attributes of an image node.]/idto the response with the400statusresponse-required-property-added
- ○
added the required property
ui/nodes/items/attributes/oneOf[subschema #3: ImageAttributes represents the attributes of an image node.]/node_typeto the response with the200statusresponse-required-property-added
- ○
added the required property
ui/nodes/items/attributes/oneOf[subschema #3: ImageAttributes represents the attributes of an image node.]/node_typeto the response with the400statusresponse-required-property-added
- ○
added the required property
ui/nodes/items/attributes/oneOf[subschema #4: AnchorAttributes represents the attributes of an anchor node.]/idto the response with the200statusresponse-required-property-added
- ○
added the required property
ui/nodes/items/attributes/oneOf[subschema #4: AnchorAttributes represents the attributes of an anchor node.]/idto the response with the400statusresponse-required-property-added
- ○
added the required property
ui/nodes/items/attributes/oneOf[subschema #4: AnchorAttributes represents the attributes of an anchor node.]/node_typeto the response with the200statusresponse-required-property-added
- ○
added the required property
ui/nodes/items/attributes/oneOf[subschema #4: AnchorAttributes represents the attributes of an anchor node.]/node_typeto the response with the400statusresponse-required-property-added
This revision also has 4 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog
- ▲