AI Documentation
Comprehensive documentation for the AI and inventory integration system.
Authentication
All API endpoints require authentication with your API key and secret
Important
Keep your API keys secure. Do not share them in publicly accessible areas such as GitHub, client-side code, etc.
Getting Your API Keys
To access the API, you need to generate API keys from your dashboard. Each customer account can have multiple API keys for different applications.
API Key
Production
api_key_••••••••••••••••••••••
API Secret
Production
api_secret_••••••••••••••••••••••
API Key
Development
api_key_dev_••••••••••••••••••
Using Authentication
curl -X POST https://api.example.com/api/documents/upload \
-H "Content-Type: multipart/form-data" \
-H "X-API-Key: your_api_key" \
-H "X-API-Secret: your_api_secret" \
-F "file=@document.pdf" \
-F "type=invoice"