Authorization Bearer in API

I’m working on code to control/monitor my rachio via AMX controller. I have my API Access token ID, but where does the Authorization Bearer ID ?
Thanks

@Gary7

Sorry for any confusion, those are the same thing.

Just use the API token you retrieved from the Webapp in your HTTP request.

curl -X GET -H "Authorization:Bearer [API token]" https://api.rach.io/1/public/person/[person Id]

:cheers:

Thanks !