Once you obtain your Access Token, you will need to pass it to the Authorization Header with a Bearer value for every request.
Example illustration of the Authorization header:
curl -X POST {url} \
-H 'Authorization: Bearer {access_token}' \
--data '{
...
}'