APIGENERAL
GENERAL

Overview

Introduction
Authorization
IDENTITY

Authorization

Exchange Access Token
Generate Access Token
JWT Bearer Authorization Grant

User

Get User Profile
Update User Profile
Delete User Profile
STUDIO

NFTs

Send NFT
Redeem NFT

Business Assets

Get Business Info
Get Business Users
Get Campaign Info
WALLET

Inventory

Get Inventory

NFTs

Perform Action
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
ALLOWL

Allowl

Allowl Language
Boolean Macros
Other Macros
Functions
Allowl Query
Token-Gating Samples
LOYALTY
Loyalty Program Overview

User

Get Reward Tokens
List Transactions
Transfer

Business

Get Treasury Balance
Fund Business Treasury
Get Business Balance for User
Update Biz Balance for User
List Biz Transactions for User
Redeem Biz Tokens for User
POINTS
Points Overview

User

Get Points Balance

Business

Get Points Balance for User
Reset All Users' Points Balance
Set Points Balance for User
Change LogForum

Get Business Info

GET
https://studio.api.vatominc.com/b/:businessId

End-User Credentials

Overview

This endpoint retrieves information for the given business ID.

Request Business Info

Sample Request

Body intentionally left blank.

Response

The endpoint will return the full user object for the current user.

Return & Error Codes

ErrorTypeDescription
200httpEverything is OK
403httpNot Authorized

Payload Object

The payload in the response body is an object with information about the given business ID. It contains the following properties:

NameTypeDescription
idstringUnique ID of this object.
businessIdstring.
namestring.
displayNamestringUser visible name of the event.
viewerIdstring.
createdByIdstring.
providerInfostring.
logoSrcstring.
urlstring.
locationstring.
billingstring.
stripeIdstring.
stripeAccountstring.
stripeAccountEnabledstring.
ethAccountstring.
ownerIdstring.
ownerOperatedstring.
defaultCampaignIdstring.
pageConfigstring.
termsarray.

Sample Response

{
  "id": "PlaceholderID",
  "businessId": "PlaceholderBusinessID",
  "name": "ShortName",
  "displayName": "DisplayName",
  "viewerId": "PlaceholderViewerID",
  "createdById": "PlaceholderCreatorID",
  "providerInfo": null,
  "logoSrc": null,
  "url": null,
  "location": null,
  "billing": null,
  "stripeId": "PlaceholderStripeID",
  "stripeAccount": null,
  "stripeAccountEnabled": false,
  "ethAccount": null,
  "ownerId": "PlaceholderOwnerID",
  "ownerOperated": true,
  "defaultCampaignId": null,
  "pageConfig": null,
  "terms": []
}