IT Operations Workspace
Account information cannot be modified. Contact support if changes are needed.
Authorization: Bearer YOUR_API_KEY{"title": "Issue", "description": "Details", "priority": "high", "requester": "user@company.com"}
Authorization: Bearer YOUR_API_KEY
Authorization: Bearer YOUR_API_KEY{"status": "in-progress"} or {"status": "resolved"}
Authorization: Bearer YOUR_API_KEY{"text": "Working on this issue now..."}
https://fxlxdkihrlomoikyurdd.supabase.co/rest/v1/rpc/get_manual_by_api_key
apikey: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6ImZ4bHhka2locmxvbW9pa3l1cmRkIiwicm9sZSI6ImFub24iLCJpYXQiOjE3NTk3MzIwMTksImV4cCI6MjA3NTMwODAxOX0.WDSZUEopjWG8wBRAdJE0GcCIZumwaOdrqkK9YkUR3X8
Content-Type: application/json
Body (JSON):
{
"p_api_key": "YOUR_API_KEY_HERE",
"p_manual_id": "anybook14g3"
}
Response (Success):
{
"success": true,
"message": "Success",
"content": "# AnyBook 14 G3 — Field Service Manual...",
"manual_title": "AnyBook 14 G3 — Field Service Manual"
}
cURL Example:
curl -X POST 'https://fxlxdkihrlomoikyurdd.supabase.co/rest/v1/rpc/get_manual_by_api_key' \
-H 'apikey: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6ImZ4bHhka2locmxvbW9pa3l1cmRkIiwicm9sZSI6ImFub24iLCJpYXQiOjE3NTk3MzIwMTksImV4cCI6MjA3NTMwODAxOX0.WDSZUEopjWG8wBRAdJE0GcCIZumwaOdrqkK9YkUR3X8' \
-H 'Content-Type: application/json' \
-d '{"p_api_key":"YOUR_API_KEY_HERE","p_manual_id":"anybook14g3"}'
Python Example (for Automation Anywhere):
import requests
url = "https://fxlxdkihrlomoikyurdd.supabase.co/rest/v1/rpc/get_manual_by_api_key"
headers = {
"apikey": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
"Content-Type": "application/json"
}
body = {
"p_api_key": "YOUR_API_KEY_HERE",
"p_manual_id": "anybook14g3"
}
response = requests.post(url, headers=headers, json=body)
manual_content = response.json()[0]["content"]
Control how users register and log in to the system.
Password Users
Passwordless Users
Total Users