HTTP Request using Bearer Token

I’m trying to use an API connection in my workflow, but, always return the error 400.
My connection is a Bearer Token connection, like that in Python:
headers = {
“Authorization”: f"Bearer {bearer_token}",
“Content-Type”: “application/json”
}

How can I configure it in Make?!