Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Learn how to authenticate with the Decisionly API
test_
live_
curl https://api.decisionly.com/v2/issuer/cases \ -u test_d0019b48d05849a6:
const apiKey = 'test_d0019b48d05849a6'; const auth = Buffer.from(`${apiKey}:`).toString('base64'); fetch('https://api.decisionly.com/v2/issuer/cases', { headers: { 'Authorization': `Basic ${auth}` } });
import requests api_key = 'test_d0019b48d05849a6' response = requests.get( 'https://api.decisionly.com/v2/issuer/cases', auth=(api_key, '') )