Introduction

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.com

Note: All endpoints must be accessed over HTTPS. HTTP is not supported.

Supported Methods

MethodPurpose
GETRetrieve existing data
POSTCreate new records
PUTUpdate existing records
DELETERemove resources
OPTIONSDiscover allowed HTTP methods

Headers

All requests must include the following headers:

api-key: YOUR_API_KEY
Content-Type: application/json

Request Format

Zluri APIs accept and return JSON-encoded payloads. For example:

{
  "executed_by": "[email protected]",
  "user_emails": ["[email protected]", "[email protected]"]
}