Authentication
Authorization: Bearer <API Token>


Last updated
Was this helpful?
Authorization: Bearer <API Token>


Last updated
Was this helpful?
Was this helpful?
Authorization: Bearer felt_pat_07T+Jmpk...# This looks like:
# FELT_API_TOKEN="felt_pat_ABCDEFUDQPAGGNBmX40YNhkCRvvLI3f8/BCwD/g8"
FELT_API_TOKEN="<YOUR_API_TOKEN>"
curl -L \
-X POST \
-H 'Content-Type: application/json' \
-H "Authorization: Bearer $FELT_API_TOKEN" \
'https://felt.com/api/v2/maps' \
-d '{"title": "My newly created map"}'import requests
# This looks like:
# api_token = "felt_pat_ABCDEFUDQPAGGNBmX40YNhkCRvvLI3f8/BCwD/g8"
api_token = "<YOUR_API_TOKEN>"
r = requests.post(
"http://felt.com/api/v2/maps",
json={"title": "My newly created map"},
headers={"Authorization": f"Bearer {api_token}"}
)
assert r.ok
print(r.json())