Hello I have a question, why is `/verification` af...
# talk-kratos
m
Hello I have a question, why is
/verification
after inserting email address returning 5 nodes, which includes the resend email node, but
/verification?flow=xyz
is returning only 4 nodes, without the resend email node?
/verification
flow object:
Copy code
{
  "id": "censored",
  "type": "browser",
  "expires_at": "2024-03-08T12:11:09.334904Z",
  "issued_at": "2024-03-08T11:41:09.334904Z",
  "request_url": "<http://localhost:4000/self-service/verification/browser>",
  "active": "code",
  "ui": {
    "action": "<http://localhost:4000/self-service/verification?flow=censored>",
    "method": "POST",
    "nodes": [
      {
        "type": "input",
        "group": "code",
        "attributes": {
          "name": "method",
          "type": "hidden",
          "value": "code",
          "disabled": false,
          "node_type": "input"
        },
        "messages": [],
        "meta": {}
      },
      {
        "type": "input",
        "group": "code",
        "attributes": {
          "name": "code",
          "type": "text",
          "required": false,
          "disabled": false,
          "node_type": "input"
        },
        "messages": [],
        "meta": {
          "label": {
            "id": 1070011,
            "text": "Verification code",
            "type": "info"
          }
        }
      },
      {
        "type": "input",
        "group": "code",
        "attributes": {
          "name": "method",
          "type": "submit",
          "value": "code",
          "disabled": false,
          "node_type": "input"
        },
        "messages": [],
        "meta": {
          "label": {
            "id": 1070005,
            "text": "Submit",
            "type": "info"
          }
        }
      },
      {
        "type": "input",
        "group": "default",
        "attributes": {
          "name": "csrf_token",
          "type": "hidden",
          "value": "censored",
          "required": true,
          "disabled": false,
          "node_type": "input"
        },
        "messages": [],
        "meta": {}
      },
      {
        "type": "input",
        "group": "code",
        "attributes": {
          "name": "email",
          "type": "submit",
          "value": "censored",
          "disabled": false,
          "node_type": "input"
        },
        "messages": [],
        "meta": {
          "label": {
            "id": 1070008,
            "text": "Resend code",
            "type": "info"
          }
        }
      }
    ],
    "messages": [
      {
        "id": 1080003,
        "text": "Please enter the code we sent to your email address",
        "type": "info"
      }
    ]
  },
  "state": "sent_email"
}
/verification?flow=xyz
flow object:
Copy code
{
  "id": "censored",
  "type": "browser",
  "expires_at": "2024-03-08T12:17:11.145732Z",
  "issued_at": "2024-03-08T11:47:11.145732Z",
  "request_url": "<http://localhost:4000/self-service/registration/browser>",
  "active": "code",
  "ui": {
    "action": "<http://localhost:4000/self-service/verification?flow=censored>",
    "method": "POST",
    "nodes": [
      {
        "type": "input",
        "group": "code",
        "attributes": {
          "name": "method",
          "type": "hidden",
          "value": "code",
          "disabled": false,
          "node_type": "input"
        },
        "messages": [],
        "meta": {}
      },
      {
        "type": "input",
        "group": "code",
        "attributes": {
          "name": "code",
          "type": "text",
          "required": false,
          "disabled": false,
          "node_type": "input"
        },
        "messages": [],
        "meta": {
          "label": {
            "id": 1070011,
            "text": "Verification code",
            "type": "info"
          }
        }
      },
      {
        "type": "input",
        "group": "code",
        "attributes": {
          "name": "method",
          "type": "submit",
          "value": "code",
          "disabled": false,
          "node_type": "input"
        },
        "messages": [],
        "meta": {
          "label": {
            "id": 1070005,
            "text": "Submit",
            "type": "info"
          }
        }
      },
      {
        "type": "input",
        "group": "default",
        "attributes": {
          "name": "csrf_token",
          "type": "hidden",
          "value": "censored",
          "required": true,
          "disabled": false,
          "node_type": "input"
        },
        "messages": [],
        "meta": {}
      }
    ],
    "messages": [
      {
        "id": 1080003,
        "text": "Please enter the code we sent to your email address",
        "type": "info"
      }
    ]
  },
  "state": "sent_email"
}