I get this error registering a domain:
Here is the command I’m trying:
curl -sLv -X POST
-H ‘Content-Type: application/json’
https://icp0.io/registrations
–data @- <<EOF
{
“name”: “https://transferkings.xyz”
}
EOF
I get this error registering a domain:
Here is the command I’m trying:
curl -sLv -X POST
-H ‘Content-Type: application/json’
https://icp0.io/registrations
–data @- <<EOF
{
“name”: “https://transferkings.xyz”
}
EOF
Hey @jamesbeadle
the problem comes from the https://
in the payload. You can run the following command and it should work:
curl -sLv -X POST
-H ‘Content-Type: application/json’
https://icp0.io/registrations
–data @- <<EOF
{
"name": "transferkings.xyz"
}
EOF
Thanks mate, that worked