...
After you have acquired the token, you submit it with each API request to the platform.
Example - cURL:
Code Block |
---|
curl http://tri.example.com:3005/v4/jobs -X GET -H "Authorization: Bearer (tokenValue)" |
where:
(tokenValue)
is the value returned for the token when it was created.
Example - REST client:
If you are submitting your API calls through a REST client, the Authorization header must be specified as follows:
...