Document toolboxDocument toolbox

Authorizing model management API requests

Authorization

To authorize your requests, add a standAloneToken header to your API request that contains a valid token.

Generate this token in the Administration → Credentials → Authentication tokens area of Devo. Click Create token and choose any token type (any type is valid for this API). Give your token a name, enter the authorized user and required target data tables you want to work with, and click Create to generate it.

Token permissions

The actions you can perform when you authorize your API access using a token are the ones you can perform according to your Role permissions in Devo.

The generated token will appear in the same area in the table below. Click its name and copy the token value from the details window that appears.

Learn more about tokens in Devo in Authentication tokens.

Header example

The following is an model management API request in cURL language authorized with the corresponding header:

curl -X GET "https://api.stage.devo.com/mlmodelmanager/v3/models/MY FIRST MODEL" -H "accept: application/json" -H "standAloneToken: YOUR_TOKEN"

Â