Welcome to Pet Crossing! If this is your first time here, you need to create an account. Send a POST request to /users with your neighborhood access token, and in the body of the request send your full name. If you are on Windows, you can use this PowerShell script: $endpoint = "https://pets.verble.net" $groupToken = ConvertTo-SecureString -AsPlainText -Force "YOUR_TOKEN_HERE" Invoke-WebRequest ` -Authentication Bearer ` -Token $groupToken ` -Uri "$endpoint/users" ` -Method Post ` -ContentType "text/plain" ` -Body "Full Name Here" If you are on macOS/Linux, you can use curl: ENDPOINT="https://pets.verble.net" GROUP_TOKEN="YOUR_TOKEN_HERE" curl -X POST "$ENDPOINT/users" \ -H "Authorization: Bearer $GROUP_TOKEN" \ -H "Content-Type: text/plain" \ -d "Full Name Here" You can also use a GUI client like Postman. To use Postman, enter the endpoint URL (https://pets.verble.net/users) and change the request method to POST. In the Authorization tab, select Bearer Token for the Auth Type and paste your token into the box. Then in the Body tab, select the "raw" radio button, and select Text from the dropdown. Finally, enter your name in the text area and send the request. You will receive a response from the server with your individual access token. You need to include this token on all of your requests. It will only be shown once, please make sure to save it somehwere! Also note down your user ID. If you forget it, you can send a GET request to /whoami.