{ "opencollection": "1.0.0", "info": { "name": "NVIDIA Run:ai Access Keys Tokens API", "version": "latest" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Tokens", "type": "folder" }, "items": [ { "info": { "name": "Create an access token v1", "type": "http" }, "http": { "method": "POST", "url": "https://app.run.ai/api/v1/token", "body": { "type": "json", "data": "{}" } }, "docs": "Create tokens using the `grant_type` parameter." }, { "info": { "name": "Create an access token v2", "type": "http" }, "http": { "method": "POST", "url": "https://app.run.ai/api/v2/token", "body": { "type": "form-urlencoded", "data": [ { "name": "grant_type", "value": "" }, { "name": "client_id", "value": "" }, { "name": "client_secret", "value": "" }, { "name": "username", "value": "" }, { "name": "password", "value": "" }, { "name": "refresh_token", "value": "" }, { "name": "code", "value": "" }, { "name": "redirect_uri", "value": "" } ] } }, "docs": "Use this endpoint to obtain an access token. Compliant with standard OAuth2 protocol and supports the common OAuth2 grant types.\n" }, { "info": { "name": "get application token", "type": "http" }, "http": { "method": "POST", "url": "https://app.run.ai/v1/k8s/auth/oauth/apptoken", "body": { "type": "json", "data": "{}" } }, "docs": "Retrieve access token for an application.\nThe application token is retrieved from the authorization server.\nThis endpoint is deprecated. Use /api/v1/token with the grantType parameter set to app_token instead, with AppID and appSecret set accordingly to get an application token\n" } ] } ], "bundled": true }