@Ana Ta Your AGV has a link to the AGV network node under the navigator node in your variables of your AGV. If you follow that path you end up under the variables of the AGVNetwork in the agvs node where every AGV has its own node with properties and one of these is called: "resetPoint" that is the node where your AGV is parked at the start. If you want to get there in code I would use 2 labels (using process flow, you can do it in one go but this made it better readable):
label1: getvarnode(token.AGV, "navigator").first.value
label2: token.label1.first.value
Label2 will give you the pointer to the reset parking position. Of course when the model is running you have to keep track yourself where everything is going etc.