Quick start with Novada APIs
Overview
Getting Started
Example: Create a Proxy Account
# Step 2. Get an access token
curl -X POST https://api-m.novada.com/v1/oauth2/token \
-u "your_username:your_api_key"
# Step 3. Use the token to create a resource (assuming a token “eyJhbG...” is returned)
curl -X POST https://api-m.novada.com/v1/proxy_account/create \
-H "Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..." \
-H "Content-Type: application/json" \
-d '{"name": "my_agent", "type": "standard"}'Obtain Access Token
Use the Access Token
Security Best Practices
Last updated