Welcome to the Zluri API documentation. This allows you to programmatically interact with your Zluri data to manage applications, users, workflows, audit logs, and automate your tasks.
Overview
Zluri API is a RESTful service that uses standard HTTP methods and JSON for request and response payloads. It’s designed to give you secure, scalable, and structured access to your SaaS management and automation features.
Base URL
All API requests should be directed to the following base URL:
https://api-ext.zluri.comNote: All endpoints must be accessed over HTTPS. HTTP is not supported.
Supported Methods
| Method | Purpose |
|---|---|
GET | Retrieve existing data |
POST | Create new records |
PUT | Update existing records |
DELETE | Remove resources |
OPTIONS | Discover allowed HTTP methods |
Headers
All requests must include the following headers:
api-key: YOUR_API_KEY
Content-Type: application/jsonRequest Format
Zluri APIs accept and return JSON-encoded payloads. For example:
{
"executed_by": "[email protected]",
"user_emails": ["[email protected]", "[email protected]"]
}