atusmenezes's Accepted Solutions

I believe you want to download it to do a restore, right? In this case, you can user the version 3.2.0.1. https://customerconnect.vmware.com/downloads/details?downloadGroup=NSX-T-3201&productId=982... See more...
I believe you want to download it to do a restore, right? In this case, you can user the version 3.2.0.1. https://customerconnect.vmware.com/downloads/details?downloadGroup=NSX-T-3201&productId=982  
Try this one, then: Execute a GET against this URL https://<manager-ip>/api/v1/transport-nodes/<tn-id>  and in tn-id, put the ID of the edge that is presenting problems. This will return a JSON wi... See more...
Try this one, then: Execute a GET against this URL https://<manager-ip>/api/v1/transport-nodes/<tn-id>  and in tn-id, put the ID of the edge that is presenting problems. This will return a JSON with all configuration of this node. Then, execute the POST below: url -k -v -u 'admin:PASSWORD' -X POST -H 'Content-Type: application/json' -d '{ "vm_id":"VM ID", "vm_deployment_config": { <You can get this info from the previous GET command> } }' https://<manager-ip>/api/v1/transport-nodes/<tn-id>?action=addOrUpdatePlacementReferences   You can get the VM_DEPLOYMENT_CONFIG info, from the previous GET command.