Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

Can access tokens be sent using an Authorization HTTP Header?

Yes. Here are two ways to make an API call with the Access Token added as an Authorization HTTP Header.

via cURL:

curl -X GET -H 'Authorization: Token token={ACCESS_TOKEN}'
https://api.validic.com/v1/organizations/{ORGANIZATION_ID}.json

via Standard REST template with Authorization HTTP Headers:

GET https://api.validic.com/v1/organizations/{ORGANIZATION_ID}.json
-H 'Authorization: Token token={ACCESS_TOKEN}'

  • No labels