why does the following script return the json file without the name property?
curl “http://localhost:9993/controller/network/${NWID}/member/${MEMID}” -H “X-ZT1-AUTH: ${TOKEN}”
{“activeBridge”:false,“address”:“fe60b52a5d”,“authenticationExpiryTime”:0,“authorized”:true,“capabilities”:,“creationTime”:1735646148827,“id”:“fe60b52a5d”,“identity”:“fe60b52a5d:0:c4dc26733a59ba90cc687cc7c5e1909a99e32758796db232d8fd96bc9f2a1645ee1cc3df4b6c47dfc4940795827fdc8a9149619f2c95d97cebc0214e6d4e859b”,“ipAssignments”:,“lastAuthorizedCredential”:null,“lastAuthorizedCredentialType”:“api”,“lastAuthorizedTime”:1735646975969,“lastDeauthorizedTime”:0,“noAutoAssignIps”:false,“nwid”:“d85e2be88d76ecdc”,“objtype”:“member”,“remoteTraceLevel”:0,“remoteTraceTarget”:null,“revision”:3,“ssoExempt”:false,“tags”:,“vMajor”:1,“vMinor”:10,“vProto”:12,“vRev”:1}
I have updated the zerotier to the latest version but the result is the same.
How can I set the node name property?
I have tried the following script but it does not work
curl -X POST “http://localhost:9993/controller/network/${NWID}/member/${MEMID}” -H “X-ZT1-AUTH: ${TOKEN}” -d ‘{“name”: “test”}’