...
Authenticating via Custom Authentication Flow
Data Theorem supports custom authentication flows that happen in two steps:
Sending a request to create an authentication token.
Supplying the authentication token when making API calls.
Please provide sample CURL commands demonstrating your custom authentication flow using. For example:
Token creation:
curl -X 'POST' "https://example.com/login" -d 'id=123&client_secret=12345&grant_type=client_credentials'
API call using received the generated token:
curl "https://example.com?id=123" -H "Authorization: Bearer 67890
...