APIGENERAL
GENERAL

Overview

Introduction
Authorization
IDENTITY

Authorization

Generate Access Token

User

Get User Profile
Update User Profile
STUDIO

NFTs

Send NFT

Business Assets

Get Business Info
Get Business Users
Get Campaign Info
SPACES AND EVENTS

Manage Spaces

List Spaces
Retrieve A Specific Space
Create A Space
Modify A Space
Delete A Space

Manage Events

List Events
Retrieve A Specific Event
Create An Event
Modify An Event
Delete An Event

Manage Guest Lists

Retrieve A Guest List
Specify A Guest List
LOGIC

Allowl

Allowl Language
Boolean Macros
Other Macros
Functions
Allowl Query
Change LogForum

Allowl Query

Overview

The Allowl Query endpoint uses the POST method to submit a query via a JSON object in the request body. The result of the query are given as a JSON object in the response body. The structure and capabilities of an Allowl query are given by the Allowl Query Language.

Query Structure of query input

Result Structure of a query result

A "Hello, World" Query Request

The following query is a trivial "hello, world" example. You may click on the beaker icon to execute it as is or to compose and execute a different query using the instructions from the preceding pages.

Sample Request

	{
    "query": "Hello, world!"
	}

"Hello, World" Response

If successful, the endpoint will return a JSON object containing the query result.

Return & Error Codes

ErrorTypeDescription
200httpQuery successfully produced a result
403httpNot Authorized
404httpResource not found

Sample Response

	{
    "result": "Hello world!"
	}

Credits

Grammar consistency testing and generation of images representing elements of the Allowl grammar were aided by Gunther Rademacher's open source Railroad Diagram Generator program. An online version is hosted at bottlecaps.de/rr/. The software was used with permission and according to its Apache License terms.