Authorization
Getting an API key
Using the API key
# Shell
curl "https://api.getflipturn.com/api/charging-sessions" -H "Authorization: Bearer {token}"// JavaScript
fetch('https://api.getflipturn.com/api/charging-sessions', {
method: 'GET',
headers: {
Authorization: `Bearer ${token}`,
},
});Last updated