Logivice API
| Purpose | URL |
|---|---|
| Production (base URL) | https://api.scaas.ai |
| Testing (sandbox URL) | https://dev-api.logivice.com |
Authentication 🔐
Logivice uses Bearer-token authentication for every request.How to get an API key
- Open uControl > Profile > API Tokens.
- Select the + button to create a token.
- Copy the key – you will not be able to see it again.
You can also call the API from a single-page app (SPA) with session cookies instead of a bearer token.
Example request
200 OK with a simple JSON status object.
Global Filtering 🗂️
Most list endpoints support flexible query-string filters.Each filter compares a field name with a value (or values) you supply.
| Syntax | Meaning |
|---|---|
test_name=test | Exact match (=) |
test_name=*test* | Substring/LIKE match (wrap text in *) |
test_name[]=test&test_name[]=test1 | Array IN search (test or test1) |
test_name!=value | Not-equal |
| Comparison operators | != = < <= > >= |
| Array operators | = != (on each element) |