Are the API Docs still up to date?

Hello there,

I am currently trying to follow the steps outlined in: Quickstart | Ready Player Me. To create an anonymous user I send a POST request to https://api.readyplayer.me/v1/users with the x-api-key header set and my application id in the body.
But unlike in the docs the response does not contain a token. So I tried to retrieve that token via the https://api.readyplayer.me/v1/auth/token GET endpoint.
But it seems that token can not be used for bearer authentication of the https://api.readyplayer.me/v2/avatars/templates GET endpoint as it results in a 401 response code.
Am I correct to assume the intended way to get a list of all templates is now to authenticate the request to https://api.readyplayer.me/v2/avatars/templates with the x-api-key header and after send a POST request to https://api.readyplayer.me/v2/avatars/templates/[templateId] mentioning the userId in the body?
Best regards.

For future reference: When creating an anonymous user with https://api.readyplayer.me/v1/users, there is the option to set a boolean “requestToken” in the request body like so:

{
 "data": {
   "applicationId": "[your_application_id]",
   "requestToken": true
 }
}

The returned token can be used for Bearer Auth.