PERS-api docs (1.7.2)

Download OpenAPI description
Overview
Languages
Servers
Mock server
https://docs.pers.ninja/_mock/swagger/
https://api.pers.ninja/v1.7/

Introduction

Introducing PERS (Phygital Experience Rewards System) the ultimate SaaS of Loyalty & Reward System. Connect PERS API to your system and get ready to create multi-projects, with your own dashboard and independent database, while ensuring users data confidentiality. This structure enables:

  • Interoperable Rewards
  • Boost Customer Engagement
  • Simplified Management
  • Effortless Integration
  • Security and Privacy
  • Data-Driven Strategy PERS System

Setup Flow

This diagram illustrates the comprehensive flow of creating and connecting various components within the SaaS PERS ecosystem. It outlines the interactions and dependencies between Tokens, Campaigns, Redemptions, Purchase, and Business entities. API Flow

Claim Campaign

The Claim System Flow in SaaS PERS outlines the process through which rewards and tokens can be claimed by different entities within the system. This flow ensures that the claiming process is secure, efficient, and flexible, catering to various use cases and integration requirements. Claim System Flow This flow ensures that the process of claiming rewards is adaptable to various scenarios, making it seamless for system administrators, business partners, and end-users to interact with the reward system efficiently.

Tenant

Operations

Description

The Tenant module in SaaS PERS represents the business or organization that leads the reward and loyalty program. As the primary administrator, the tenant has overarching control over the configuration and management of the loyalty and reward system. Key responsibilities and features for the tenant include:

  • Program Management: Define and oversee the overall structure and rules of the reward program.
  • Dashboard Access: Utilize a comprehensive dashboard to monitor and manage all aspects of the reward system.
  • Data Confidentiality: Ensure that all user data within the system is handled with the highest level of confidentiality and security.
  • Customization: Tailor the reward system to align with the business's unique objectives and customer engagement strategies.
  • Integration: Seamlessly integrate the reward system with existing business systems and processes through the PERS API.

Create a new tenant

Request

Create a new tenant aka project

Bodyapplication/jsonrequired
projectNamestringrequired
curl -i -X POST \
  https://docs.pers.ninja/_mock/swagger/tenant \
  -H 'Content-Type: application/json' \
  -d '{
    "projectName": "string"
  }'

Responses

Tenant created

Bodyapplication/json
projectNamestringrequired

Name of the tenant.

idstringrequired

Unique identifier for tenant. This id is used to identify tenant in the system for client requests.

createdAtstring(date-time)required

Date when tenant was created.

projectDescriptionstring

Description of the tenant.

projectWebsitestring

Website of the tenant.

projectEmailstring

Email of the tenant.

projectImageUrlstring

Image URL of the tenant.

projectApiKeystringrequired

Unique identifier for tenant. This id is used to identify tenant in the system for client requests.

testnetProjectApiKeystringrequired

Testnet project API key for tenant. Used in case of testnet project.

stripeApiKeystring

Stripe API key for tenant. Used in case of stripe payment.

stripeWebhookSecretstring

Stripe webhook secret for tenant. Used in case of stripe payment.

loginTokenstring

This is an optional field for any extra login requirements for your users.

allowJWTForUnauthenticatedUsersbooleanrequired

This is an optional field for any extra login requirements for your users.

firebaseTenantIdstring
jwtstring

JWT token for tenant admin user. This token is used to authenticate tenant admin user. It is generated when tenant is created. Please store it securely, you will not be able to see this again. However, you can generate a new one if needed.

apiPrivateKeystring

API private key for tenant. This key is used to authenticate tenant when making API requests. It is generated on demand. Please store it securely, you will not be able to see this again. However, you can generate a new one if needed.

Response
application/json
{ "projectName": "string", "id": "string", "createdAt": "2019-08-24T14:15:22Z", "projectDescription": "string", "projectWebsite": "string", "projectEmail": "string", "projectImageUrl": "string", "projectApiKey": "string", "testnetProjectApiKey": "string", "stripeApiKey": "string", "stripeWebhookSecret": "string", "loginToken": "string", "allowJWTForUnauthenticatedUsers": true, "firebaseTenantId": "string", "jwt": "string", "apiPrivateKey": "string" }

ADMIN: Create a new api key for tenant with tenant admin credentials

Request

Create a new api key for tenant with tenant admin credentials. Store this key securely, you will not be able to see this again

Bodyapplication/jsonrequired
keyNamestringrequired

name of the key

curl -i -X POST \
  https://docs.pers.ninja/_mock/swagger/tenant/admin/api-key \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "keyName": "string"
  }'

Responses

Api key created

Bodyapplication/json
projectNamestringrequired

Name of the tenant.

idstringrequired

Unique identifier for tenant. This id is used to identify tenant in the system for client requests.

createdAtstring(date-time)required

Date when tenant was created.

projectDescriptionstring

Description of the tenant.

projectWebsitestring

Website of the tenant.

projectEmailstring

Email of the tenant.

projectImageUrlstring

Image URL of the tenant.

projectApiKeystringrequired

Unique identifier for tenant. This id is used to identify tenant in the system for client requests.

testnetProjectApiKeystringrequired

Testnet project API key for tenant. Used in case of testnet project.

stripeApiKeystring

Stripe API key for tenant. Used in case of stripe payment.

stripeWebhookSecretstring

Stripe webhook secret for tenant. Used in case of stripe payment.

loginTokenstring

This is an optional field for any extra login requirements for your users.

allowJWTForUnauthenticatedUsersbooleanrequired

This is an optional field for any extra login requirements for your users.

firebaseTenantIdstring
jwtstring

JWT token for tenant admin user. This token is used to authenticate tenant admin user. It is generated when tenant is created. Please store it securely, you will not be able to see this again. However, you can generate a new one if needed.

apiPrivateKeystring

API private key for tenant. This key is used to authenticate tenant when making API requests. It is generated on demand. Please store it securely, you will not be able to see this again. However, you can generate a new one if needed.

Response
application/json
{ "projectName": "string", "id": "string", "createdAt": "2019-08-24T14:15:22Z", "projectDescription": "string", "projectWebsite": "string", "projectEmail": "string", "projectImageUrl": "string", "projectApiKey": "string", "testnetProjectApiKey": "string", "stripeApiKey": "string", "stripeWebhookSecret": "string", "loginToken": "string", "allowJWTForUnauthenticatedUsers": true, "firebaseTenantId": "string", "jwt": "string", "apiPrivateKey": "string" }

ADMIN: Create a new jwt token for tenant with tenant admin credentials

Request

Create a new jwt token for tenant with tenant admin credentials. Store this key securely, you will not be able to see this again

Bodyapplication/jsonrequired
isTestnetbooleanrequired

wheter the key is for testnet or mainnet

curl -i -X POST \
  https://docs.pers.ninja/_mock/swagger/tenant/admin/jwt \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "isTestnet": true
  }'

Responses

Api key created

Bodyapplication/json
projectNamestringrequired

Name of the tenant.

idstringrequired

Unique identifier for tenant. This id is used to identify tenant in the system for client requests.

createdAtstring(date-time)required

Date when tenant was created.

projectDescriptionstring

Description of the tenant.

projectWebsitestring

Website of the tenant.

projectEmailstring

Email of the tenant.

projectImageUrlstring

Image URL of the tenant.

projectApiKeystringrequired

Unique identifier for tenant. This id is used to identify tenant in the system for client requests.

testnetProjectApiKeystringrequired

Testnet project API key for tenant. Used in case of testnet project.

stripeApiKeystring

Stripe API key for tenant. Used in case of stripe payment.

stripeWebhookSecretstring

Stripe webhook secret for tenant. Used in case of stripe payment.

loginTokenstring

This is an optional field for any extra login requirements for your users.

allowJWTForUnauthenticatedUsersbooleanrequired

This is an optional field for any extra login requirements for your users.

firebaseTenantIdstring
jwtstring

JWT token for tenant admin user. This token is used to authenticate tenant admin user. It is generated when tenant is created. Please store it securely, you will not be able to see this again. However, you can generate a new one if needed.

apiPrivateKeystring

API private key for tenant. This key is used to authenticate tenant when making API requests. It is generated on demand. Please store it securely, you will not be able to see this again. However, you can generate a new one if needed.

Response
application/json
{ "projectName": "string", "id": "string", "createdAt": "2019-08-24T14:15:22Z", "projectDescription": "string", "projectWebsite": "string", "projectEmail": "string", "projectImageUrl": "string", "projectApiKey": "string", "testnetProjectApiKey": "string", "stripeApiKey": "string", "stripeWebhookSecret": "string", "loginToken": "string", "allowJWTForUnauthenticatedUsers": true, "firebaseTenantId": "string", "jwt": "string", "apiPrivateKey": "string" }

ADMIN: Update tenant

Request

Update tenant information

Bodyapplication/jsonrequired
projectNamestring

The project name

Example: "My Project"
projectDescriptionstring

The project description

stripeApiKeystring
stripeWebhookSecretstring
stripePublishableKeystring
loginTokenstring
allowJWTForUnauthenticatedUsersboolean

This is an optional field for any extra login requirements for your users.

firebaseTenantIdstring
projectWebsitestring
projectEmailstring
projectImageUrlstring
curl -i -X PUT \
  https://docs.pers.ninja/_mock/swagger/tenant/admin \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "projectName": "My Project",
    "projectDescription": "string",
    "stripeApiKey": "string",
    "stripeWebhookSecret": "string",
    "stripePublishableKey": "string",
    "loginToken": "string",
    "allowJWTForUnauthenticatedUsers": true,
    "firebaseTenantId": "string",
    "projectWebsite": "string",
    "projectEmail": "string",
    "projectImageUrl": "string"
  }'

Responses

Tenant updated

Bodyapplication/json
projectNamestringrequired

Name of the tenant.

idstringrequired

Unique identifier for tenant. This id is used to identify tenant in the system for client requests.

createdAtstring(date-time)required

Date when tenant was created.

projectDescriptionstring

Description of the tenant.

projectWebsitestring

Website of the tenant.

projectEmailstring

Email of the tenant.

projectImageUrlstring

Image URL of the tenant.

projectApiKeystringrequired

Unique identifier for tenant. This id is used to identify tenant in the system for client requests.

testnetProjectApiKeystringrequired

Testnet project API key for tenant. Used in case of testnet project.

stripeApiKeystring

Stripe API key for tenant. Used in case of stripe payment.

stripeWebhookSecretstring

Stripe webhook secret for tenant. Used in case of stripe payment.

loginTokenstring

This is an optional field for any extra login requirements for your users.

allowJWTForUnauthenticatedUsersbooleanrequired

This is an optional field for any extra login requirements for your users.

firebaseTenantIdstring
jwtstring

JWT token for tenant admin user. This token is used to authenticate tenant admin user. It is generated when tenant is created. Please store it securely, you will not be able to see this again. However, you can generate a new one if needed.

apiPrivateKeystring

API private key for tenant. This key is used to authenticate tenant when making API requests. It is generated on demand. Please store it securely, you will not be able to see this again. However, you can generate a new one if needed.

Response
application/json
{ "projectName": "string", "id": "string", "createdAt": "2019-08-24T14:15:22Z", "projectDescription": "string", "projectWebsite": "string", "projectEmail": "string", "projectImageUrl": "string", "projectApiKey": "string", "testnetProjectApiKey": "string", "stripeApiKey": "string", "stripeWebhookSecret": "string", "loginToken": "string", "allowJWTForUnauthenticatedUsers": true, "firebaseTenantId": "string", "jwt": "string", "apiPrivateKey": "string" }

Get login token

Request

Get login token for project

curl -i -X GET \
  https://docs.pers.ninja/_mock/swagger/tenant/login-token \
  -H 'x-project-key: YOUR_API_KEY_HERE'

Responses

Login token

Bodyapplication/json
string
Response
application/json
"string"

Get public tenant

Request

Get public tenant information

curl -i -X GET \
  https://docs.pers.ninja/_mock/swagger/tenant/public \
  -H 'x-project-key: YOUR_API_KEY_HERE'

Responses

Tenant information

Bodyapplication/json
projectNamestringrequired

Name of the tenant.

idstringrequired

Unique identifier for tenant. This id is used to identify tenant in the system for client requests.

createdAtstring(date-time)required

Date when tenant was created.

projectDescriptionstring

Description of the tenant.

projectWebsitestring

Website of the tenant.

projectEmailstring

Email of the tenant.

projectImageUrlstring

Image URL of the tenant.

Response
application/json
{ "projectName": "string", "id": "string", "createdAt": "2019-08-24T14:15:22Z", "projectDescription": "string", "projectWebsite": "string", "projectEmail": "string", "projectImageUrl": "string" }

Get client config

Request

Get client config for project

curl -i -X GET \
  https://docs.pers.ninja/_mock/swagger/tenant/client-config \
  -H 'x-project-key: YOUR_API_KEY_HERE'

Responses

Client config

Bodyapplication/json
projectNamestringrequired

The project name

Example: "My Project"
idstringrequired

The project id

Example: "ererf-erf-erf-erf"
stripePublishableKeystring

Stripe publishable key for tenant. Used in case of stripe payment.

firebaseTenantIdstring

Firebase tenant ID for tenant. This id is needed, if you choose to setup Firebase for user authentification for your project.

infuraApiKeystringrequired

Infura API key for tenant. Used in for client interaction with web3 provider.

polyScanApiKeystringrequired

PolyScan API key for tenant. Used in for client interaction with PolyScan.

Response
application/json
{ "projectName": "My Project", "id": "ererf-erf-erf-erf", "stripePublishableKey": "string", "firebaseTenantId": "string", "infuraApiKey": "string", "polyScanApiKey": "string" }

Token

Operations

Description

The Token module in SaaS PERS is a versatile system enabling users to earn or spend various types of tokens. Tokens can be categorised as Credits, Rewards, or Status. This module ensures seamless management of token transactions, providing a robust foundation for creating engaging reward experiences. It supports multiple token operations, including issuance, balance checks, and redemption, thus facilitating a dynamic and customizable rewards ecosystem. The Token module is designed to be easily integrated into any business model, providing a flexible and scalable solution to enhance customer loyalty and engagement.
Token Module

ADMIN: Create a new testnet token contract

Request

Create a new testnet token contract for project. This can later be converted into a mainnet version

Bodyapplication/jsonrequired
contractAddressstringrequired

Contract address is the address of the token contract on chain.

abiUrlstring

The ABI URL is the URL to the contract ABI. This is an optional field. If not provided, the contract ABI will be fetched from PERS instance depending on selected token type.

typestringrequired
Enum"ERC20""ERC721""ERC1155"
decimalsnumber

Decimals is the number of decimals the token uses. This is useful for ERC20 tokens.

curl -i -X POST \
  https://docs.pers.ninja/_mock/swagger/token/admin \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "contractAddress": "string",
    "abiUrl": "string",
    "type": "ERC20",
    "decimals": 0
  }'

Responses

Token created

Bodyapplication/json
idstringrequired

Id of the token

contractAddressstringrequired

Address of the token

metadataobject

Metadata of the token, this is optional and can be null in case of Point token

abiobjectrequired

this is the abi of the contract, this is the interface of the contract to interact with it

chainIdnumberrequired

this is the chain id of the chain where the token is deployed

abiUrlobjectrequired

this is the url of the abi of the contract, to be used to fetch the abi of the contract

namestring

this is the name of the token contract

symbolstring

this is the symbol of the token contract, this is optional and can be null

decimalsnumber

this is the decimals of the token. This is optional and only used for ERC20 tokens (Points)

isActivebooleanrequired

This can be used to enable or disable the token

isGallerybooleanrequired

This can be used to enable or disable the token for gallery

typestringrequired

This is the underlying web3 native type of the token contract

Enum"ERC20""ERC721""ERC1155"
Response
application/json
{ "id": "string", "contractAddress": "string", "metadata": {}, "abi": {}, "chainId": 0, "abiUrl": {}, "name": "string", "symbol": "string", "decimals": 0, "isActive": true, "isGallery": true, "type": "ERC20" }

ADMIN: Create mainnet token Address for existing token

Request

Create mainnet token Address for existing token

Path
idstringrequired
contractAddressstringrequired
chainIdstringrequired
curl -i -X PUT \
  'https://docs.pers.ninja/_mock/swagger/token/admin/{id}/mainnet/{contractAddress}/chain/{chainId}' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'

Responses

Mainnet token Address created

Bodyapplication/json
idstringrequired

Id of the token

contractAddressstringrequired

Address of the token

metadataobject

Metadata of the token, this is optional and can be null in case of Point token

abiobjectrequired

this is the abi of the contract, this is the interface of the contract to interact with it

chainIdnumberrequired

this is the chain id of the chain where the token is deployed

abiUrlobjectrequired

this is the url of the abi of the contract, to be used to fetch the abi of the contract

namestring

this is the name of the token contract

symbolstring

this is the symbol of the token contract, this is optional and can be null

decimalsnumber

this is the decimals of the token. This is optional and only used for ERC20 tokens (Points)

isActivebooleanrequired

This can be used to enable or disable the token

isGallerybooleanrequired

This can be used to enable or disable the token for gallery

typestringrequired

This is the underlying web3 native type of the token contract

Enum"ERC20""ERC721""ERC1155"
Response
application/json
{ "id": "string", "contractAddress": "string", "metadata": {}, "abi": {}, "chainId": 0, "abiUrl": {}, "name": "string", "symbol": "string", "decimals": 0, "isActive": true, "isGallery": true, "type": "ERC20" }

ADMIN: Toggle token active

Request

Toggle token active to be used

Path
idstringrequired
curl -i -X PUT \
  'https://docs.pers.ninja/_mock/swagger/token/admin/{id}/toggle-active' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'

Responses

Token toggled

Bodyapplication/json
idstringrequired

Id of the token

contractAddressstringrequired

Address of the token

metadataobject

Metadata of the token, this is optional and can be null in case of Point token

abiobjectrequired

this is the abi of the contract, this is the interface of the contract to interact with it

chainIdnumberrequired

this is the chain id of the chain where the token is deployed

abiUrlobjectrequired

this is the url of the abi of the contract, to be used to fetch the abi of the contract

namestring

this is the name of the token contract

symbolstring

this is the symbol of the token contract, this is optional and can be null

decimalsnumber

this is the decimals of the token. This is optional and only used for ERC20 tokens (Points)

isActivebooleanrequired

This can be used to enable or disable the token

isGallerybooleanrequired

This can be used to enable or disable the token for gallery

typestringrequired

This is the underlying web3 native type of the token contract

Enum"ERC20""ERC721""ERC1155"
Response
application/json
{ "id": "string", "contractAddress": "string", "metadata": {}, "abi": {}, "chainId": 0, "abiUrl": {}, "name": "string", "symbol": "string", "decimals": 0, "isActive": true, "isGallery": true, "type": "ERC20" }

ADMIN: Update token

Request

Update token

Path
idstringrequired
Bodyapplication/jsonrequired
isGalleryboolean

This indicates if token should be included as a gallery. This is useful for ERC721 or ERC1155 tokens.

namestring

The name of the token

symbolstring

The symbol of the token

curl -i -X PUT \
  'https://docs.pers.ninja/_mock/swagger/token/admin/{id}' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "isGallery": true,
    "name": "string",
    "symbol": "string"
  }'

Responses

Token updates

Bodyapplication/json
idstringrequired

Id of the token

contractAddressstringrequired

Address of the token

metadataobject

Metadata of the token, this is optional and can be null in case of Point token

abiobjectrequired

this is the abi of the contract, this is the interface of the contract to interact with it

chainIdnumberrequired

this is the chain id of the chain where the token is deployed

abiUrlobjectrequired

this is the url of the abi of the contract, to be used to fetch the abi of the contract

namestring

this is the name of the token contract

symbolstring

this is the symbol of the token contract, this is optional and can be null

decimalsnumber

this is the decimals of the token. This is optional and only used for ERC20 tokens (Points)

isActivebooleanrequired

This can be used to enable or disable the token

isGallerybooleanrequired

This can be used to enable or disable the token for gallery

typestringrequired

This is the underlying web3 native type of the token contract

Enum"ERC20""ERC721""ERC1155"
Response
application/json
{ "id": "string", "contractAddress": "string", "metadata": {}, "abi": {}, "chainId": 0, "abiUrl": {}, "name": "string", "symbol": "string", "decimals": 0, "isActive": true, "isGallery": true, "type": "ERC20" }

ADMIN: Create token metadata

Request

Create token metadata for a specific token contract

Path
idstringrequired
Bodyapplication/jsonrequired
imageUrlstring

This is the URL to the image of the item. Can be just about any type of image (including SVGs, which will be cached into PNGs by OpenSea), IPFS or Arweave URLs or paths. We recommend using a minimum 3000 x 3000 image.

externalUrlstring

This is the URL that will appear below the asset's image

descriptionstring

A human-readable description of the item. Markdown is supported.

namestring

Name of the item.

expiryDatestring(date-time)

expiry date in case of an utility reward

animationUrlstring

A URL to a multi-media attachment for the item. The file extensions GLTF, GLB, WEBM, MP4, M4V, OGV, and OGG are supported, along with the audio-only extensions MP3, WAV, and OGA. Animation_url also supports HTML pages, allowing you to build rich experiences and interactive NFTs using JavaScript canvas, WebGL, and more. Scripts and relative paths within the HTML page are now supported. However, access to browser extensions is not supported.

youtubeUrlstring

A URL to a YouTube video (only used if animation_url is not provide

creatorAccountAddressstring

Creator Address

previewUrlstring

Preview Url

curl -i -X POST \
  'https://docs.pers.ninja/_mock/swagger/token/admin/{id}/metadata' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "imageUrl": "string",
    "externalUrl": "string",
    "description": "string",
    "name": "string",
    "expiryDate": "2019-08-24T14:15:22Z",
    "animationUrl": "string",
    "youtubeUrl": "string",
    "creatorAccountAddress": "string",
    "previewUrl": "string"
  }'

Responses

Token metadata created

Bodyapplication/json
imageUrlstring

This is the URL to the image of the item. Can be just about any type of image (including SVGs, which will be cached into PNGs by OpenSea), IPFS or Arweave URLs or paths. We recommend using a minimum 3000 x 3000 image.

externalUrlstring

This is the URL that will appear below the asset's image

descriptionstring

A human-readable description of the item. Markdown is supported.

namestring

Name of the item.

expiryDatestring(date-time)

expiry date in case of an utility reward

animationUrlstring

A URL to a multi-media attachment for the item. The file extensions GLTF, GLB, WEBM, MP4, M4V, OGV, and OGG are supported, along with the audio-only extensions MP3, WAV, and OGA. Animation_url also supports HTML pages, allowing you to build rich experiences and interactive NFTs using JavaScript canvas, WebGL, and more. Scripts and relative paths within the HTML page are now supported. However, access to browser extensions is not supported.

youtubeUrlstring

A URL to a YouTube video (only used if animation_url is not provide

creatorAccountAddressstring

Creator Address

previewUrlstring

Preview Url

idstringrequired

Token Metadata id

animationWeb3StorageUrlstring

web3 storage url for the animation file

imageWeb3StorageUrlstring

web3 storage url for the image

web3StorageUrlstring

Storage Url

tokenMetadataIncrementalIdnumberrequired

Token Metadata Incremental Id

isActivebooleanrequired

Is active

Response
application/json
{ "imageUrl": "string", "externalUrl": "string", "description": "string", "name": "string", "expiryDate": "2019-08-24T14:15:22Z", "animationUrl": "string", "youtubeUrl": "string", "creatorAccountAddress": "string", "previewUrl": "string", "id": "string", "animationWeb3StorageUrl": "string", "imageWeb3StorageUrl": "string", "web3StorageUrl": "string", "tokenMetadataIncrementalId": 0, "isActive": true }

ADMIN: Toggle token metadata active

Request

Toggle token metadata active

Path
idstringrequired
curl -i -X PUT \
  'https://docs.pers.ninja/_mock/swagger/token/admin/metadata/{id}/toggle-active' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'

Responses

Token metadata toggled

Bodyapplication/json
imageUrlstring

This is the URL to the image of the item. Can be just about any type of image (including SVGs, which will be cached into PNGs by OpenSea), IPFS or Arweave URLs or paths. We recommend using a minimum 3000 x 3000 image.

externalUrlstring

This is the URL that will appear below the asset's image

descriptionstring

A human-readable description of the item. Markdown is supported.

namestring

Name of the item.

expiryDatestring(date-time)

expiry date in case of an utility reward

animationUrlstring

A URL to a multi-media attachment for the item. The file extensions GLTF, GLB, WEBM, MP4, M4V, OGV, and OGG are supported, along with the audio-only extensions MP3, WAV, and OGA. Animation_url also supports HTML pages, allowing you to build rich experiences and interactive NFTs using JavaScript canvas, WebGL, and more. Scripts and relative paths within the HTML page are now supported. However, access to browser extensions is not supported.

youtubeUrlstring

A URL to a YouTube video (only used if animation_url is not provide

creatorAccountAddressstring

Creator Address

previewUrlstring

Preview Url

idstringrequired

Token Metadata id

animationWeb3StorageUrlstring

web3 storage url for the animation file

imageWeb3StorageUrlstring

web3 storage url for the image

web3StorageUrlstring

Storage Url

tokenMetadataIncrementalIdnumberrequired

Token Metadata Incremental Id

isActivebooleanrequired

Is active

Response
application/json
{ "imageUrl": "string", "externalUrl": "string", "description": "string", "name": "string", "expiryDate": "2019-08-24T14:15:22Z", "animationUrl": "string", "youtubeUrl": "string", "creatorAccountAddress": "string", "previewUrl": "string", "id": "string", "animationWeb3StorageUrl": "string", "imageWeb3StorageUrl": "string", "web3StorageUrl": "string", "tokenMetadataIncrementalId": 0, "isActive": true }

ADMIN: Create a new token type

Request

Create a new token type for project

Bodyapplication/jsonrequired
nativeTokenTypestringrequired

Token native Types:

  • ERC20: used for credits
  • ERC721: used for stamps and NFTs
  • ERC1155: used for rewards
Enum"ERC20""ERC721""ERC1155"
namestring

Token type name

imageUrlstring

Token type image url

descriptionstring

Token type description

curl -i -X POST \
  https://docs.pers.ninja/_mock/swagger/token/admin/type \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "nativeTokenType": "ERC20",
    "name": "string",
    "imageUrl": "string",
    "description": "string"
  }'

Responses

Token type created

Bodyapplication/json
nativeTokenTypestringrequired

Token native Types:

  • ERC20: used for credits
  • ERC721: used for stamps and NFTs
  • ERC1155: used for rewards
Enum"ERC20""ERC721""ERC1155"
namestring

Token type name

imageUrlstring

Token type image url

descriptionstring

Token type description

Response
application/json
{ "nativeTokenType": "ERC20", "name": "string", "imageUrl": "string", "description": "string" }

Get all token types

Request

Get all token types

curl -i -X GET \
  https://docs.pers.ninja/_mock/swagger/token/type \
  -H 'x-project-key: YOUR_API_KEY_HERE'

Responses

Token types

Bodyapplication/jsonArray [
nativeTokenTypestringrequired

Token native Types:

  • ERC20: used for credits
  • ERC721: used for stamps and NFTs
  • ERC1155: used for rewards
Enum"ERC20""ERC721""ERC1155"
namestring

Token type name

imageUrlstring

Token type image url

descriptionstring

Token type description

]
Response
application/json
[ { "nativeTokenType": "ERC20", "name": "string", "imageUrl": "string", "description": "string" } ]

Get all token contracts

Request

Get all token contracts

Query
activestring

Filter for active tokens only (default: true)

curl -i -X GET \
  'https://docs.pers.ninja/_mock/swagger/token?active=string' \
  -H 'x-project-key: YOUR_API_KEY_HERE'

Responses

Tokens

Bodyapplication/jsonArray [
idstringrequired

Id of the token

contractAddressstringrequired

Address of the token

metadataobject

Metadata of the token, this is optional and can be null in case of Point token

abiobjectrequired

this is the abi of the contract, this is the interface of the contract to interact with it

chainIdnumberrequired

this is the chain id of the chain where the token is deployed

abiUrlobjectrequired

this is the url of the abi of the contract, to be used to fetch the abi of the contract

namestring

this is the name of the token contract

symbolstring

this is the symbol of the token contract, this is optional and can be null

decimalsnumber

this is the decimals of the token. This is optional and only used for ERC20 tokens (Points)

isActivebooleanrequired

This can be used to enable or disable the token

isGallerybooleanrequired

This can be used to enable or disable the token for gallery

typestringrequired

This is the underlying web3 native type of the token contract

Enum"ERC20""ERC721""ERC1155"
]
Response
application/json
[ { "id": "string", "contractAddress": "string", "metadata": {}, "abi": {}, "chainId": 0, "abiUrl": {}, "name": "string", "symbol": "string", "decimals": 0, "isActive": true, "isGallery": true, "type": "ERC20" } ]

Get active credit token contracts

Request

Get active credit token contracts

curl -i -X GET \
  https://docs.pers.ninja/_mock/swagger/token/credit \
  -H 'x-project-key: YOUR_API_KEY_HERE'

Responses

Credit token

Bodyapplication/json
idstringrequired

Id of the token

contractAddressstringrequired

Address of the token

metadataobject

Metadata of the token, this is optional and can be null in case of Point token

abiobjectrequired

this is the abi of the contract, this is the interface of the contract to interact with it

chainIdnumberrequired

this is the chain id of the chain where the token is deployed

abiUrlobjectrequired

this is the url of the abi of the contract, to be used to fetch the abi of the contract

namestring

this is the name of the token contract

symbolstring

this is the symbol of the token contract, this is optional and can be null

decimalsnumber

this is the decimals of the token. This is optional and only used for ERC20 tokens (Points)

isActivebooleanrequired

This can be used to enable or disable the token

isGallerybooleanrequired

This can be used to enable or disable the token for gallery

typestringrequired

This is the underlying web3 native type of the token contract

Enum"ERC20""ERC721""ERC1155"
Response
application/json
{ "id": "string", "contractAddress": "string", "metadata": {}, "abi": {}, "chainId": 0, "abiUrl": {}, "name": "string", "symbol": "string", "decimals": 0, "isActive": true, "isGallery": true, "type": "ERC20" }

Get all reward token contracts

Request

Get all reward token contracts

Query
activestring

Filter for active reward tokens only (default: true)

curl -i -X GET \
  'https://docs.pers.ninja/_mock/swagger/token/reward?active=string' \
  -H 'x-project-key: YOUR_API_KEY_HERE'

Responses

Reward tokens

Bodyapplication/jsonArray [
idstringrequired

Id of the token

contractAddressstringrequired

Address of the token

metadataobject

Metadata of the token, this is optional and can be null in case of Point token

abiobjectrequired

this is the abi of the contract, this is the interface of the contract to interact with it

chainIdnumberrequired

this is the chain id of the chain where the token is deployed

abiUrlobjectrequired

this is the url of the abi of the contract, to be used to fetch the abi of the contract

namestring

this is the name of the token contract

symbolstring

this is the symbol of the token contract, this is optional and can be null

decimalsnumber

this is the decimals of the token. This is optional and only used for ERC20 tokens (Points)

isActivebooleanrequired

This can be used to enable or disable the token

isGallerybooleanrequired

This can be used to enable or disable the token for gallery

typestringrequired

This is the underlying web3 native type of the token contract

Enum"ERC20""ERC721""ERC1155"
]
Response
application/json
[ { "id": "string", "contractAddress": "string", "metadata": {}, "abi": {}, "chainId": 0, "abiUrl": {}, "name": "string", "symbol": "string", "decimals": 0, "isActive": true, "isGallery": true, "type": "ERC20" } ]

Get all status token contracts

Request

Get all status token contracts

Query
activestring

Filter for active status tokens only (default: true)

curl -i -X GET \
  'https://docs.pers.ninja/_mock/swagger/token/status?active=string' \
  -H 'x-project-key: YOUR_API_KEY_HERE'

Responses

Status tokens

Bodyapplication/jsonArray [
idstringrequired

Id of the token

contractAddressstringrequired

Address of the token

metadataobject

Metadata of the token, this is optional and can be null in case of Point token

abiobjectrequired

this is the abi of the contract, this is the interface of the contract to interact with it

chainIdnumberrequired

this is the chain id of the chain where the token is deployed

abiUrlobjectrequired

this is the url of the abi of the contract, to be used to fetch the abi of the contract

namestring

this is the name of the token contract

symbolstring

this is the symbol of the token contract, this is optional and can be null

decimalsnumber

this is the decimals of the token. This is optional and only used for ERC20 tokens (Points)

isActivebooleanrequired

This can be used to enable or disable the token

isGallerybooleanrequired

This can be used to enable or disable the token for gallery

typestringrequired

This is the underlying web3 native type of the token contract

Enum"ERC20""ERC721""ERC1155"
]
Response
application/json
[ { "id": "string", "contractAddress": "string", "metadata": {}, "abi": {}, "chainId": 0, "abiUrl": {}, "name": "string", "symbol": "string", "decimals": 0, "isActive": true, "isGallery": true, "type": "ERC20" } ]

Campaign

Operations

Description

The Campaign module in SaaS PERS enables the creation and management of multi-campaigns that users can participate in to earn tokens. This module supports a wide range of campaign types, including promotional, engagement, and loyalty campaigns, each designed to incentivize specific user behaviours. Campaigns are a strategic tool for boosting customer engagement and driving desired actions. With robust analytics and reporting features, the Campaign module allows businesses to monitor campaign performance and optimise their strategies for maximum impact. The flexibility of this module ensures that businesses can design campaigns tailored to their unique goals and customer demographics. Campaign Module
Key Campaign Features

  • Integration with External APIs: The Campaign module supports connections to over 7,000 external APIs, including CMS, CRM, Email Marketing, Events, Social Media, Product Sales, and AI. This extensive integration capability allows businesses to automate and streamline their campaign processes. Connect with Zapier

  • Tailored Strategies: Businesses can design campaigns to align with specific goals, such as marketing objectives, sales targets, sustainability and environmental initiatives, and productivity improvements. This flexibility ensures that campaigns are not only engaging but also strategically impactful.

  • Dynamic Campaign Models: The module supports various campaign types, each designed to incentivize different user behaviors. Whether it's a promotional campaign to boost short-term sales or a loyalty program to foster long-term customer engagement, the Campaign module can handle it.

  • User Engagement: By participating in campaigns, users can earn tokens for completing specific actions. These actions can range from social media interactions and product purchases to attending events and more, depending on the campaign's objectives.

  • Data-Driven Optimization: With robust analytics and reporting features, businesses can monitor the performance of their campaigns in real-time. This data-driven approach allows for continuous optimization, ensuring that campaigns achieve their desired outcomes.

List active campaigns

Request

List active campaigns

curl -i -X GET \
  https://docs.pers.ninja/_mock/swagger/campaign \
  -H 'x-project-key: YOUR_API_KEY_HERE'

Responses

Campaigns

Bodyapplication/jsonArray [
namestringrequired

Campaign name

descriptionobjectrequired

Campaign description

beneficiaryAccountAddressobjectrequired

Campaign beneficiary account address

startDateobjectrequired

Campaign start date, default is the current date

endDateobjectrequired

Campaign end date

imageUrlobjectrequired

img url

externalUrlobjectrequired

Campaign url

idstringrequired

Campaign id

isActivebooleanrequired

Campaign isActive

isTestnetboolean

Campaign isTestnet, this means that the campaign is running on testnet, not mainnet

triggerobjectrequired

Campaign trigger: what triggers the campaign, and what are the conditions for the trigger to be activated

tokenUnitsArray of stringsrequired

Campaign reward: what are the rewards

businessEngagementsArray of stringsrequired

Campaign businesses: what businesses are involved in the campaign

createdAtobjectrequired

create date

updatedAtobjectrequired

update date

]
Response
application/json
[ { "name": "string", "description": {}, "beneficiaryAccountAddress": {}, "startDate": {}, "endDate": {}, "imageUrl": {}, "externalUrl": {}, "id": "string", "isActive": true, "isTestnet": true, "trigger": {}, "tokenUnits": [ … ], "businessEngagements": [ … ], "createdAt": {}, "updatedAt": {} } ]

ADMIN: List campaigns

Request

ADMIN: List campaigns

Query
activestring

Filter by active status

curl -i -X GET \
  'https://docs.pers.ninja/_mock/swagger/campaign/admin?active=string' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'

Responses

Campaigns

Bodyapplication/jsonArray [
namestringrequired

Campaign name

descriptionobjectrequired

Campaign description

beneficiaryAccountAddressobjectrequired

Campaign beneficiary account address

startDateobjectrequired

Campaign start date, default is the current date

endDateobjectrequired

Campaign end date

imageUrlobjectrequired

img url

externalUrlobjectrequired

Campaign url

idstringrequired

Campaign id

isActivebooleanrequired

Campaign isActive

isTestnetboolean

Campaign isTestnet, this means that the campaign is running on testnet, not mainnet

triggerobjectrequired

Campaign trigger: what triggers the campaign, and what are the conditions for the trigger to be activated

tokenUnitsArray of stringsrequired

Campaign reward: what are the rewards

businessEngagementsArray of stringsrequired

Campaign businesses: what businesses are involved in the campaign

createdAtobjectrequired

create date

updatedAtobjectrequired

update date

]
Response
application/json
[ { "name": "string", "description": {}, "beneficiaryAccountAddress": {}, "startDate": {}, "endDate": {}, "imageUrl": {}, "externalUrl": {}, "id": "string", "isActive": true, "isTestnet": true, "trigger": {}, "tokenUnits": [ … ], "businessEngagements": [ … ], "createdAt": {}, "updatedAt": {} } ]

ADMIN: Create new campaign

Request

Create new campaign

Bodyapplication/jsonrequired
namestringrequired

Campaign name

descriptionstring

Campaign description

beneficiaryAccountAddressstring

Campaign beneficiary account address

startDatestring(date-time)

Campaign start date, default is the current date

endDatestring(date-time)

Campaign end date

imageUrlstring

img url

externalUrlstring

Campaign url

curl -i -X POST \
  https://docs.pers.ninja/_mock/swagger/campaign/admin \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "name": "string",
    "description": "string",
    "beneficiaryAccountAddress": "string",
    "startDate": "2019-08-24T14:15:22Z",
    "endDate": "2019-08-24T14:15:22Z",
    "imageUrl": "string",
    "externalUrl": "string"
  }'

Responses

Campaign created

Bodyapplication/json
namestringrequired

Campaign name

descriptionobjectrequired

Campaign description

beneficiaryAccountAddressobjectrequired

Campaign beneficiary account address

startDateobjectrequired

Campaign start date, default is the current date

endDateobjectrequired

Campaign end date

imageUrlobjectrequired

img url

externalUrlobjectrequired

Campaign url

idstringrequired

Campaign id

isActivebooleanrequired

Campaign isActive

isTestnetboolean

Campaign isTestnet, this means that the campaign is running on testnet, not mainnet

triggerobjectrequired

Campaign trigger: what triggers the campaign, and what are the conditions for the trigger to be activated

tokenUnitsArray of stringsrequired

Campaign reward: what are the rewards

businessEngagementsArray of stringsrequired

Campaign businesses: what businesses are involved in the campaign

createdAtobjectrequired

create date

updatedAtobjectrequired

update date

Response
application/json
{ "name": "string", "description": {}, "beneficiaryAccountAddress": {}, "startDate": {}, "endDate": {}, "imageUrl": {}, "externalUrl": {}, "id": "string", "isActive": true, "isTestnet": true, "trigger": {}, "tokenUnits": [ "string" ], "businessEngagements": [ "string" ], "createdAt": {}, "updatedAt": {} }

Get campaign

Request

Get campaign

Path
idstringrequired
curl -i -X GET \
  'https://docs.pers.ninja/_mock/swagger/campaign/{id}' \
  -H 'x-project-key: YOUR_API_KEY_HERE'

Responses

Campaign

Bodyapplication/json
namestringrequired

Campaign name

descriptionobjectrequired

Campaign description

beneficiaryAccountAddressobjectrequired

Campaign beneficiary account address

startDateobjectrequired

Campaign start date, default is the current date

endDateobjectrequired

Campaign end date

imageUrlobjectrequired

img url

externalUrlobjectrequired

Campaign url

idstringrequired

Campaign id

isActivebooleanrequired

Campaign isActive

isTestnetboolean

Campaign isTestnet, this means that the campaign is running on testnet, not mainnet

triggerobjectrequired

Campaign trigger: what triggers the campaign, and what are the conditions for the trigger to be activated

tokenUnitsArray of stringsrequired

Campaign reward: what are the rewards

businessEngagementsArray of stringsrequired

Campaign businesses: what businesses are involved in the campaign

createdAtobjectrequired

create date

updatedAtobjectrequired

update date

Response
application/json
{ "name": "string", "description": {}, "beneficiaryAccountAddress": {}, "startDate": {}, "endDate": {}, "imageUrl": {}, "externalUrl": {}, "id": "string", "isActive": true, "isTestnet": true, "trigger": {}, "tokenUnits": [ "string" ], "businessEngagements": [ "string" ], "createdAt": {}, "updatedAt": {} }

ADMIN: Update campaign

Request

Update campaign

Path
idstringrequired
Bodyapplication/jsonrequired
namestringrequired

Campaign name

descriptionstring

Campaign description

beneficiaryAccountAddressstring

Campaign beneficiary account address

startDatestring(date-time)

Campaign start date, default is the current date

endDatestring(date-time)

Campaign end date

imageUrlstring

img url

externalUrlstring

Campaign url

curl -i -X PUT \
  'https://docs.pers.ninja/_mock/swagger/campaign/admin/{id}' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "name": "string",
    "description": "string",
    "beneficiaryAccountAddress": "string",
    "startDate": "2019-08-24T14:15:22Z",
    "endDate": "2019-08-24T14:15:22Z",
    "imageUrl": "string",
    "externalUrl": "string"
  }'

Responses

Campaign updated

Bodyapplication/json
namestringrequired

Campaign name

descriptionobjectrequired

Campaign description

beneficiaryAccountAddressobjectrequired

Campaign beneficiary account address

startDateobjectrequired

Campaign start date, default is the current date

endDateobjectrequired

Campaign end date

imageUrlobjectrequired

img url

externalUrlobjectrequired

Campaign url

idstringrequired

Campaign id

isActivebooleanrequired

Campaign isActive

isTestnetboolean

Campaign isTestnet, this means that the campaign is running on testnet, not mainnet

triggerobjectrequired

Campaign trigger: what triggers the campaign, and what are the conditions for the trigger to be activated

tokenUnitsArray of stringsrequired

Campaign reward: what are the rewards

businessEngagementsArray of stringsrequired

Campaign businesses: what businesses are involved in the campaign

createdAtobjectrequired

create date

updatedAtobjectrequired

update date

Response
application/json
{ "name": "string", "description": {}, "beneficiaryAccountAddress": {}, "startDate": {}, "endDate": {}, "imageUrl": {}, "externalUrl": {}, "id": "string", "isActive": true, "isTestnet": true, "trigger": {}, "tokenUnits": [ "string" ], "businessEngagements": [ "string" ], "createdAt": {}, "updatedAt": {} }

ADMIN: Delete campaign

Request

Delete campaign

Path
idstringrequired
curl -i -X DELETE \
  'https://docs.pers.ninja/_mock/swagger/campaign/admin/{id}' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'

Responses

Campaign deleted

Bodyapplication/json
boolean
Response
application/json
true

ADMIN: Toggle activate campaign

Request

Activate / deactivate campaign

Path
idstringrequired
curl -i -X PUT \
  'https://docs.pers.ninja/_mock/swagger/campaign/admin/{id}/activate' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'

Responses

Campaign activated

Bodyapplication/json
namestringrequired

Campaign name

descriptionobjectrequired

Campaign description

beneficiaryAccountAddressobjectrequired

Campaign beneficiary account address

startDateobjectrequired

Campaign start date, default is the current date

endDateobjectrequired

Campaign end date

imageUrlobjectrequired

img url

externalUrlobjectrequired

Campaign url

idstringrequired

Campaign id

isActivebooleanrequired

Campaign isActive

isTestnetboolean

Campaign isTestnet, this means that the campaign is running on testnet, not mainnet

triggerobjectrequired

Campaign trigger: what triggers the campaign, and what are the conditions for the trigger to be activated

tokenUnitsArray of stringsrequired

Campaign reward: what are the rewards

businessEngagementsArray of stringsrequired

Campaign businesses: what businesses are involved in the campaign

createdAtobjectrequired

create date

updatedAtobjectrequired

update date

Response
application/json
{ "name": "string", "description": {}, "beneficiaryAccountAddress": {}, "startDate": {}, "endDate": {}, "imageUrl": {}, "externalUrl": {}, "id": "string", "isActive": true, "isTestnet": true, "trigger": {}, "tokenUnits": [ "string" ], "businessEngagements": [ "string" ], "createdAt": {}, "updatedAt": {} }

ADMIN: Toggle testnet campaign

Request

Set campaign to testnet or mainnet

Path
idstringrequired
curl -i -X PUT \
  'https://docs.pers.ninja/_mock/swagger/campaign/admin/{id}/environment' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'

Responses

Campaign set to testnet or mainnet

Bodyapplication/json
namestringrequired

Campaign name

descriptionobjectrequired

Campaign description

beneficiaryAccountAddressobjectrequired

Campaign beneficiary account address

startDateobjectrequired

Campaign start date, default is the current date

endDateobjectrequired

Campaign end date

imageUrlobjectrequired

img url

externalUrlobjectrequired

Campaign url

idstringrequired

Campaign id

isActivebooleanrequired

Campaign isActive

isTestnetboolean

Campaign isTestnet, this means that the campaign is running on testnet, not mainnet

triggerobjectrequired

Campaign trigger: what triggers the campaign, and what are the conditions for the trigger to be activated

tokenUnitsArray of stringsrequired

Campaign reward: what are the rewards

businessEngagementsArray of stringsrequired

Campaign businesses: what businesses are involved in the campaign

createdAtobjectrequired

create date

updatedAtobjectrequired

update date

Response
application/json
{ "name": "string", "description": {}, "beneficiaryAccountAddress": {}, "startDate": {}, "endDate": {}, "imageUrl": {}, "externalUrl": {}, "id": "string", "isActive": true, "isTestnet": true, "trigger": {}, "tokenUnits": [ "string" ], "businessEngagements": [ "string" ], "createdAt": {}, "updatedAt": {} }

ADMIN: Add campaign token

Request

Add campaign token

Path
idstringrequired
Bodyapplication/jsonrequired
tokenIdstringrequired

Token id

tokenMetadataIncrementalIdnumber

token metadata incremental id for the token unit, this is used to identify the specific token metadata that should be minted

amountnumberrequired

Token unit amount is the amount of tokens that the user will receive when aquiring the token unit

maxAmountnumber

Token unit max amount, this is the maximum amount of tokens that the user can receive when aquiring the token unit. This is relevant e.g. in campaigns where a user may receive token units per revenue spent etc

curl -i -X POST \
  'https://docs.pers.ninja/_mock/swagger/campaign/admin/{id}/token-units' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "tokenId": "string",
    "tokenMetadataIncrementalId": 0,
    "amount": 0,
    "maxAmount": 0
  }'

Responses

Campaign token added

Bodyapplication/json
namestringrequired

Campaign name

descriptionobjectrequired

Campaign description

beneficiaryAccountAddressobjectrequired

Campaign beneficiary account address

startDateobjectrequired

Campaign start date, default is the current date

endDateobjectrequired

Campaign end date

imageUrlobjectrequired

img url

externalUrlobjectrequired

Campaign url

idstringrequired

Campaign id

isActivebooleanrequired

Campaign isActive

isTestnetboolean

Campaign isTestnet, this means that the campaign is running on testnet, not mainnet

triggerobjectrequired

Campaign trigger: what triggers the campaign, and what are the conditions for the trigger to be activated

tokenUnitsArray of stringsrequired

Campaign reward: what are the rewards

businessEngagementsArray of stringsrequired

Campaign businesses: what businesses are involved in the campaign

createdAtobjectrequired

create date

updatedAtobjectrequired

update date

Response
application/json
{ "name": "string", "description": {}, "beneficiaryAccountAddress": {}, "startDate": {}, "endDate": {}, "imageUrl": {}, "externalUrl": {}, "id": "string", "isActive": true, "isTestnet": true, "trigger": {}, "tokenUnits": [ "string" ], "businessEngagements": [ "string" ], "createdAt": {}, "updatedAt": {} }

ADMIN: Update campaign token

Request

Update campaign token

Path
idstringrequired
tokenUnitIdstringrequired
Bodyapplication/jsonrequired
tokenIdstringrequired

Token id

tokenMetadataIncrementalIdnumber

token metadata incremental id for the token unit, this is used to identify the specific token metadata that should be minted

amountnumberrequired

Token unit amount is the amount of tokens that the user will receive when aquiring the token unit

maxAmountnumber

Token unit max amount, this is the maximum amount of tokens that the user can receive when aquiring the token unit. This is relevant e.g. in campaigns where a user may receive token units per revenue spent etc

curl -i -X PUT \
  'https://docs.pers.ninja/_mock/swagger/campaign/admin/{id}/token-units/{tokenUnitId}' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "tokenId": "string",
    "tokenMetadataIncrementalId": 0,
    "amount": 0,
    "maxAmount": 0
  }'

Responses

Campaign token updated

Bodyapplication/json
namestringrequired

Campaign name

descriptionobjectrequired

Campaign description

beneficiaryAccountAddressobjectrequired

Campaign beneficiary account address

startDateobjectrequired

Campaign start date, default is the current date

endDateobjectrequired

Campaign end date

imageUrlobjectrequired

img url

externalUrlobjectrequired

Campaign url

idstringrequired

Campaign id

isActivebooleanrequired

Campaign isActive

isTestnetboolean

Campaign isTestnet, this means that the campaign is running on testnet, not mainnet

triggerobjectrequired

Campaign trigger: what triggers the campaign, and what are the conditions for the trigger to be activated

tokenUnitsArray of stringsrequired

Campaign reward: what are the rewards

businessEngagementsArray of stringsrequired

Campaign businesses: what businesses are involved in the campaign

createdAtobjectrequired

create date

updatedAtobjectrequired

update date

Response
application/json
{ "name": "string", "description": {}, "beneficiaryAccountAddress": {}, "startDate": {}, "endDate": {}, "imageUrl": {}, "externalUrl": {}, "id": "string", "isActive": true, "isTestnet": true, "trigger": {}, "tokenUnits": [ "string" ], "businessEngagements": [ "string" ], "createdAt": {}, "updatedAt": {} }

ADMIN: Remove campaign token

Request

Remove campaign token

Path
idstringrequired
tokenUnitIdstringrequired
curl -i -X DELETE \
  'https://docs.pers.ninja/_mock/swagger/campaign/admin/{id}/token-units/{tokenUnitId}' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'

Responses

Campaign token removed

Bodyapplication/json
namestringrequired

Campaign name

descriptionobjectrequired

Campaign description

beneficiaryAccountAddressobjectrequired

Campaign beneficiary account address

startDateobjectrequired

Campaign start date, default is the current date

endDateobjectrequired

Campaign end date

imageUrlobjectrequired

img url

externalUrlobjectrequired

Campaign url

idstringrequired

Campaign id

isActivebooleanrequired

Campaign isActive

isTestnetboolean

Campaign isTestnet, this means that the campaign is running on testnet, not mainnet

triggerobjectrequired

Campaign trigger: what triggers the campaign, and what are the conditions for the trigger to be activated

tokenUnitsArray of stringsrequired

Campaign reward: what are the rewards

businessEngagementsArray of stringsrequired

Campaign businesses: what businesses are involved in the campaign

createdAtobjectrequired

create date

updatedAtobjectrequired

update date

Response
application/json
{ "name": "string", "description": {}, "beneficiaryAccountAddress": {}, "startDate": {}, "endDate": {}, "imageUrl": {}, "externalUrl": {}, "id": "string", "isActive": true, "isTestnet": true, "trigger": {}, "tokenUnits": [ "string" ], "businessEngagements": [ "string" ], "createdAt": {}, "updatedAt": {} }

ADMIN: Set campaign trigger

Request

Set campaign trigger

Path
idstringrequired
triggerIdstringrequired
curl -i -X PUT \
  'https://docs.pers.ninja/_mock/swagger/campaign/admin/{id}/trigger/{triggerId}' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'

Responses

Campaign trigger set

Bodyapplication/json
namestringrequired

Campaign name

descriptionobjectrequired

Campaign description

beneficiaryAccountAddressobjectrequired

Campaign beneficiary account address

startDateobjectrequired

Campaign start date, default is the current date

endDateobjectrequired

Campaign end date

imageUrlobjectrequired

img url

externalUrlobjectrequired

Campaign url

idstringrequired

Campaign id

isActivebooleanrequired

Campaign isActive

isTestnetboolean

Campaign isTestnet, this means that the campaign is running on testnet, not mainnet

triggerobjectrequired

Campaign trigger: what triggers the campaign, and what are the conditions for the trigger to be activated

tokenUnitsArray of stringsrequired

Campaign reward: what are the rewards

businessEngagementsArray of stringsrequired

Campaign businesses: what businesses are involved in the campaign

createdAtobjectrequired

create date

updatedAtobjectrequired

update date

Response
application/json
{ "name": "string", "description": {}, "beneficiaryAccountAddress": {}, "startDate": {}, "endDate": {}, "imageUrl": {}, "externalUrl": {}, "id": "string", "isActive": true, "isTestnet": true, "trigger": {}, "tokenUnits": [ "string" ], "businessEngagements": [ "string" ], "createdAt": {}, "updatedAt": {} }

ADMIN: Add business engagement to campaign

Request

Add business engagement to campaign

Path
idstringrequired
Bodyapplication/jsonrequired
businessIdsArray of stringsrequired

The business ids to engage with

shortDescriptionstring

A short description of the business engagement, with indications what to do etc

maxPerBussinessnumber

max per user at the business

maxPerDaynumber

max per day, the maximum number of times a user can engage with the buisness in the campaign per day

curl -i -X POST \
  'https://docs.pers.ninja/_mock/swagger/campaign/admin/{id}/business-engagement' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "businessIds": [
      "string"
    ],
    "shortDescription": "string",
    "maxPerBussiness": 0,
    "maxPerDay": 0
  }'

Responses

Business engagement added

Bodyapplication/json
namestringrequired

Campaign name

descriptionobjectrequired

Campaign description

beneficiaryAccountAddressobjectrequired

Campaign beneficiary account address

startDateobjectrequired

Campaign start date, default is the current date

endDateobjectrequired

Campaign end date

imageUrlobjectrequired

img url

externalUrlobjectrequired

Campaign url

idstringrequired

Campaign id

isActivebooleanrequired

Campaign isActive

isTestnetboolean

Campaign isTestnet, this means that the campaign is running on testnet, not mainnet

triggerobjectrequired

Campaign trigger: what triggers the campaign, and what are the conditions for the trigger to be activated

tokenUnitsArray of stringsrequired

Campaign reward: what are the rewards

businessEngagementsArray of stringsrequired

Campaign businesses: what businesses are involved in the campaign

createdAtobjectrequired

create date

updatedAtobjectrequired

update date

Response
application/json
{ "name": "string", "description": {}, "beneficiaryAccountAddress": {}, "startDate": {}, "endDate": {}, "imageUrl": {}, "externalUrl": {}, "id": "string", "isActive": true, "isTestnet": true, "trigger": {}, "tokenUnits": [ "string" ], "businessEngagements": [ "string" ], "createdAt": {}, "updatedAt": {} }

ADMIN: Update business engagement in campaign

Request

Update business engagement in campaign

Path
idstringrequired
businessEngagementIdstringrequired
Bodyapplication/jsonrequired
businessIdsArray of stringsrequired

The business ids to engage with

shortDescriptionstring

A short description of the business engagement, with indications what to do etc

maxPerBussinessnumber

max per user at the business

maxPerDaynumber

max per day, the maximum number of times a user can engage with the buisness in the campaign per day

curl -i -X PUT \
  'https://docs.pers.ninja/_mock/swagger/campaign/admin/{id}/business-engagement/{businessEngagementId}' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "businessIds": [
      "string"
    ],
    "shortDescription": "string",
    "maxPerBussiness": 0,
    "maxPerDay": 0
  }'

Responses

Business engagement updated

Bodyapplication/json
namestringrequired

Campaign name

descriptionobjectrequired

Campaign description

beneficiaryAccountAddressobjectrequired

Campaign beneficiary account address

startDateobjectrequired

Campaign start date, default is the current date

endDateobjectrequired

Campaign end date

imageUrlobjectrequired

img url

externalUrlobjectrequired

Campaign url

idstringrequired

Campaign id

isActivebooleanrequired

Campaign isActive

isTestnetboolean

Campaign isTestnet, this means that the campaign is running on testnet, not mainnet

triggerobjectrequired

Campaign trigger: what triggers the campaign, and what are the conditions for the trigger to be activated

tokenUnitsArray of stringsrequired

Campaign reward: what are the rewards

businessEngagementsArray of stringsrequired

Campaign businesses: what businesses are involved in the campaign

createdAtobjectrequired

create date

updatedAtobjectrequired

update date

Response
application/json
{ "name": "string", "description": {}, "beneficiaryAccountAddress": {}, "startDate": {}, "endDate": {}, "imageUrl": {}, "externalUrl": {}, "id": "string", "isActive": true, "isTestnet": true, "trigger": {}, "tokenUnits": [ "string" ], "businessEngagements": [ "string" ], "createdAt": {}, "updatedAt": {} }

ADMIN: Remove business engagement from campaign

Request

Remove business engagement from campaign

Path
idstringrequired
businessEngagementIdstringrequired
curl -i -X DELETE \
  'https://docs.pers.ninja/_mock/swagger/campaign/admin/{id}/business-engagement/{businessEngagementId}' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'

Responses

Business engagement removed

Bodyapplication/json
namestringrequired

Campaign name

descriptionobjectrequired

Campaign description

beneficiaryAccountAddressobjectrequired

Campaign beneficiary account address

startDateobjectrequired

Campaign start date, default is the current date

endDateobjectrequired

Campaign end date

imageUrlobjectrequired

img url

externalUrlobjectrequired

Campaign url

idstringrequired

Campaign id

isActivebooleanrequired

Campaign isActive

isTestnetboolean

Campaign isTestnet, this means that the campaign is running on testnet, not mainnet

triggerobjectrequired

Campaign trigger: what triggers the campaign, and what are the conditions for the trigger to be activated

tokenUnitsArray of stringsrequired

Campaign reward: what are the rewards

businessEngagementsArray of stringsrequired

Campaign businesses: what businesses are involved in the campaign

createdAtobjectrequired

create date

updatedAtobjectrequired

update date

Response
application/json
{ "name": "string", "description": {}, "beneficiaryAccountAddress": {}, "startDate": {}, "endDate": {}, "imageUrl": {}, "externalUrl": {}, "id": "string", "isActive": true, "isTestnet": true, "trigger": {}, "tokenUnits": [ "string" ], "businessEngagements": [ "string" ], "createdAt": {}, "updatedAt": {} }

List triggers

Request

List triggers

curl -i -X GET \
  https://docs.pers.ninja/_mock/swagger/campaign/trigger/all \
  -H 'x-project-key: YOUR_API_KEY_HERE'

Responses

Triggers

Bodyapplication/jsonArray [
namestringrequired

Campaign trigger name

descriptionstring

Campaign trigger description

maxPerDaynumber

Campaign trigger max per day

maxPerUsernumber

Campaign trigger max per user

minCooldownSecondsnumber

Campaign trigger min cooldown seconds

maxGeoDistanceInMetersnumber

Campaign trigger max geo distance to Business in meters

requiredUserInfoobject

Campaign trigger required user info

triggerTypestring

Campaign trigger type

Enum"CLAIM_BY_USER""CLAIM_BY_SYSTEM""CLAIM_BY_BUSINESS"
maxMultipliernumber

Campaign trigger max multiplier

completionThresholdobject

Campaign trigger completion threshold. This indicates the number of completions required before the reward is granted

idstringrequired

Campaign trigger id

conditionsArray of stringsrequired

Campaign trigger conditions

]
Response
application/json
[ { "name": "string", "description": "string", "maxPerDay": 0, "maxPerUser": 0, "minCooldownSeconds": 0, "maxGeoDistanceInMeters": 0, "requiredUserInfo": {}, "triggerType": "CLAIM_BY_USER", "maxMultiplier": 0, "completionThreshold": {}, "id": "string", "conditions": [ … ] } ]

ADMIN: Create trigger for campaign

Request

Create trigger for campaign

Bodyapplication/jsonrequired
namestringrequired

Campaign trigger name

descriptionstring

Campaign trigger description

maxPerDaynumber

Campaign trigger max per day

maxPerUsernumber

Campaign trigger max per user

minCooldownSecondsnumber

Campaign trigger min cooldown seconds

maxGeoDistanceInMetersnumber

Campaign trigger max geo distance to Business in meters

requiredUserInfoobject

Campaign trigger required user info

triggerTypestring

Campaign trigger type

Enum"CLAIM_BY_USER""CLAIM_BY_SYSTEM""CLAIM_BY_BUSINESS"
maxMultipliernumber

Campaign trigger max multiplier

completionThresholdobject

Campaign trigger completion threshold. This indicates the number of completions required before the reward is granted

curl -i -X POST \
  https://docs.pers.ninja/_mock/swagger/campaign/admin/trigger \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "name": "string",
    "description": "string",
    "maxPerDay": 0,
    "maxPerUser": 0,
    "minCooldownSeconds": 0,
    "maxGeoDistanceInMeters": 0,
    "requiredUserInfo": {},
    "triggerType": "CLAIM_BY_USER",
    "maxMultiplier": 0,
    "completionThreshold": {}
  }'

Responses

Campaign trigger

Bodyapplication/json
namestringrequired

Campaign trigger name

descriptionstring

Campaign trigger description

maxPerDaynumber

Campaign trigger max per day

maxPerUsernumber

Campaign trigger max per user

minCooldownSecondsnumber

Campaign trigger min cooldown seconds

maxGeoDistanceInMetersnumber

Campaign trigger max geo distance to Business in meters

requiredUserInfoobject

Campaign trigger required user info

triggerTypestring

Campaign trigger type

Enum"CLAIM_BY_USER""CLAIM_BY_SYSTEM""CLAIM_BY_BUSINESS"
maxMultipliernumber

Campaign trigger max multiplier

completionThresholdobject

Campaign trigger completion threshold. This indicates the number of completions required before the reward is granted

idstringrequired

Campaign trigger id

conditionsArray of stringsrequired

Campaign trigger conditions

Response
application/json
{ "name": "string", "description": "string", "maxPerDay": 0, "maxPerUser": 0, "minCooldownSeconds": 0, "maxGeoDistanceInMeters": 0, "requiredUserInfo": {}, "triggerType": "CLAIM_BY_USER", "maxMultiplier": 0, "completionThreshold": {}, "id": "string", "conditions": [ "string" ] }

ADMIN: Update campaign trigger

Request

Update campaign trigger

Path
idstringrequired
Bodyapplication/jsonrequired
namestringrequired

Campaign trigger name

descriptionstring

Campaign trigger description

maxPerDaynumber

Campaign trigger max per day

maxPerUsernumber

Campaign trigger max per user

minCooldownSecondsnumber

Campaign trigger min cooldown seconds

maxGeoDistanceInMetersnumber

Campaign trigger max geo distance to Business in meters

requiredUserInfoobject

Campaign trigger required user info

triggerTypestring

Campaign trigger type

Enum"CLAIM_BY_USER""CLAIM_BY_SYSTEM""CLAIM_BY_BUSINESS"
maxMultipliernumber

Campaign trigger max multiplier

completionThresholdobject

Campaign trigger completion threshold. This indicates the number of completions required before the reward is granted

curl -i -X PUT \
  'https://docs.pers.ninja/_mock/swagger/campaign/admin/trigger/{id}' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "name": "string",
    "description": "string",
    "maxPerDay": 0,
    "maxPerUser": 0,
    "minCooldownSeconds": 0,
    "maxGeoDistanceInMeters": 0,
    "requiredUserInfo": {},
    "triggerType": "CLAIM_BY_USER",
    "maxMultiplier": 0,
    "completionThreshold": {}
  }'

Responses

Campaign trigger updated

Bodyapplication/json
namestringrequired

Campaign trigger name

descriptionstring

Campaign trigger description

maxPerDaynumber

Campaign trigger max per day

maxPerUsernumber

Campaign trigger max per user

minCooldownSecondsnumber

Campaign trigger min cooldown seconds

maxGeoDistanceInMetersnumber

Campaign trigger max geo distance to Business in meters

requiredUserInfoobject

Campaign trigger required user info

triggerTypestring

Campaign trigger type

Enum"CLAIM_BY_USER""CLAIM_BY_SYSTEM""CLAIM_BY_BUSINESS"
maxMultipliernumber

Campaign trigger max multiplier

completionThresholdobject

Campaign trigger completion threshold. This indicates the number of completions required before the reward is granted

idstringrequired

Campaign trigger id

conditionsArray of stringsrequired

Campaign trigger conditions

Response
application/json
{ "name": "string", "description": "string", "maxPerDay": 0, "maxPerUser": 0, "minCooldownSeconds": 0, "maxGeoDistanceInMeters": 0, "requiredUserInfo": {}, "triggerType": "CLAIM_BY_USER", "maxMultiplier": 0, "completionThreshold": {}, "id": "string", "conditions": [ "string" ] }

ADMIN: Delete campaign trigger

Request

Delete campaign trigger

Path
idstringrequired
curl -i -X DELETE \
  'https://docs.pers.ninja/_mock/swagger/campaign/admin/trigger/{id}' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'

Responses

Campaign trigger deleted

Bodyapplication/json
boolean
Response
application/json
true

ADMIN: Add or remove condition to campaign trigger

Request

Add or remove condition to campaign trigger

Path
triggerIdstringrequired
conditionIdstringrequired
curl -i -X PUT \
  'https://docs.pers.ninja/_mock/swagger/campaign/admin/trigger/{triggerId}/condition/{conditionId}' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'

Responses

Campaign trigger updated

Bodyapplication/json
namestringrequired

Campaign trigger name

descriptionstring

Campaign trigger description

maxPerDaynumber

Campaign trigger max per day

maxPerUsernumber

Campaign trigger max per user

minCooldownSecondsnumber

Campaign trigger min cooldown seconds

maxGeoDistanceInMetersnumber

Campaign trigger max geo distance to Business in meters

requiredUserInfoobject

Campaign trigger required user info

triggerTypestring

Campaign trigger type

Enum"CLAIM_BY_USER""CLAIM_BY_SYSTEM""CLAIM_BY_BUSINESS"
maxMultipliernumber

Campaign trigger max multiplier

completionThresholdobject

Campaign trigger completion threshold. This indicates the number of completions required before the reward is granted

idstringrequired

Campaign trigger id

conditionsArray of stringsrequired

Campaign trigger conditions

Response
application/json
{ "name": "string", "description": "string", "maxPerDay": 0, "maxPerUser": 0, "minCooldownSeconds": 0, "maxGeoDistanceInMeters": 0, "requiredUserInfo": {}, "triggerType": "CLAIM_BY_USER", "maxMultiplier": 0, "completionThreshold": {}, "id": "string", "conditions": [ "string" ] }

ADMIN: Create campaign trigger condition

Request

Create campaign trigger condition

Bodyapplication/jsonrequired
conditionTypestringrequired

Trigger condition type

Enum"EQUALS""NOT_EQUALS""GREATER_THAN""LESS_THAN""CONTAINS""IS_PART_OF"
valueobjectrequired

Trigger condition value

keystringrequired

Trigger condition key

idstringrequired
curl -i -X POST \
  https://docs.pers.ninja/_mock/swagger/campaign/admin/trigger-condition \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "conditionType": "EQUALS",
    "value": {},
    "key": "string",
    "id": "string"
  }'

Responses

Campaign trigger condition created

Bodyapplication/json
conditionTypestringrequired

Trigger condition type

Enum"EQUALS""NOT_EQUALS""GREATER_THAN""LESS_THAN""CONTAINS""IS_PART_OF"
valueobjectrequired

Trigger condition value

keystringrequired

Trigger condition key

Response
application/json
{ "conditionType": "EQUALS", "value": {}, "key": "string" }

ADMIN: Update campaign trigger condition

Request

Update campaign trigger condition

Path
idstringrequired
Bodyapplication/jsonrequired
conditionTypestringrequired

Trigger condition type

Enum"EQUALS""NOT_EQUALS""GREATER_THAN""LESS_THAN""CONTAINS""IS_PART_OF"
valueobjectrequired

Trigger condition value

keystringrequired

Trigger condition key

idstringrequired
curl -i -X PUT \
  'https://docs.pers.ninja/_mock/swagger/campaign/admin/trigger-condition/{id}' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "conditionType": "EQUALS",
    "value": {},
    "key": "string",
    "id": "string"
  }'

Responses

Campaign trigger condition updated

Bodyapplication/json
conditionTypestringrequired

Trigger condition type

Enum"EQUALS""NOT_EQUALS""GREATER_THAN""LESS_THAN""CONTAINS""IS_PART_OF"
valueobjectrequired

Trigger condition value

keystringrequired

Trigger condition key

Response
application/json
{ "conditionType": "EQUALS", "value": {}, "key": "string" }

Claim campaign reward by System

Request

Claim campaign reward by System api key needs to be a valid tenant api key

Bodyapplication/jsonrequired
campaignIdstringrequired

The campaign id

conditionsDataobject

The campaign condition data

multipliernumber

The campaign multiplier that will be applied to the reward. Default is 1.0

businessIdstring

Business identifier

latitudenumber

geolocation latitude

longitudenumber

geolocation longitude

userIdentifierstring

The user identifier

startDatestring(date-time)

The start date of the claim

endDatestring(date-time)

The end date of the claim

idstring

The id of the user

emailstring

The email of the user

instagramAccountIdstring

The instagramAccountId of the user

externalIdstring

The externalId of the user

curl -i -X POST \
  https://docs.pers.ninja/_mock/swagger/campaign/system/claim \
  -H 'Content-Type: application/json' \
  -H 'x-api-key: YOUR_API_KEY_HERE' \
  -H 'x-project-key: YOUR_API_KEY_HERE' \
  -d '{
    "campaignId": "string",
    "conditionsData": {},
    "multiplier": 0,
    "businessId": "string",
    "latitude": 0,
    "longitude": 0,
    "userIdentifier": "string",
    "startDate": "2019-08-24T14:15:22Z",
    "endDate": "2019-08-24T14:15:22Z",
    "id": "string",
    "email": "string",
    "instagramAccountId": "string",
    "externalId": "string"
  }'

Responses

Campaign reward claimed

Bodyapplication/json
idstringrequired

The id of the campaign user claim

createdAtobjectrequired

The date the campaign user claim was created

userobjectrequired

The user that is claiming the campaign

user.​idstringrequired
user.​emailobject
user.​firstNameobjectrequired

User first name

user.​lastNameobjectrequired

User last name

user.​externalIdobjectrequired

User external id

user.​accountAddressstringrequired

User account address

user.​instagramAccountIdobjectrequired

Instagram account id

user.​googleAccountNameobjectrequired

Google account name

campaignobjectrequired

The campaign that the user is claiming

campaign.​namestringrequired

Campaign name

campaign.​descriptionobjectrequired

Campaign description

campaign.​beneficiaryAccountAddressobjectrequired

Campaign beneficiary account address

campaign.​startDateobjectrequired

Campaign start date, default is the current date

campaign.​endDateobjectrequired

Campaign end date

campaign.​imageUrlobjectrequired

img url

campaign.​externalUrlobjectrequired

Campaign url

campaign.​idstringrequired

Campaign id

campaign.​isActivebooleanrequired

Campaign isActive

campaign.​isTestnetboolean

Campaign isTestnet, this means that the campaign is running on testnet, not mainnet

campaign.​triggerobjectrequired

Campaign trigger: what triggers the campaign, and what are the conditions for the trigger to be activated

campaign.​tokenUnitsArray of stringsrequired

Campaign reward: what are the rewards

campaign.​businessEngagementsArray of stringsrequired

Campaign businesses: what businesses are involved in the campaign

campaign.​createdAtobjectrequired

create date

campaign.​updatedAtobjectrequired

update date

businessobject

The business that the user claimed the campaign for

Response
application/json
{ "id": "string", "createdAt": {}, "user": { "id": "string", "email": {}, "firstName": {}, "lastName": {}, "externalId": {}, "accountAddress": "string", "instagramAccountId": {}, "googleAccountName": {} }, "campaign": { "name": "string", "description": {}, "beneficiaryAccountAddress": {}, "startDate": {}, "endDate": {}, "imageUrl": {}, "externalUrl": {}, "id": "string", "isActive": true, "isTestnet": true, "trigger": {}, "tokenUnits": [ … ], "businessEngagements": [ … ], "createdAt": {}, "updatedAt": {} }, "business": { "id": "string", "email": "string", "accountAddress": "string", "businessLegalName": "string", "displayName": "string", "description": "string", "shortDescription": "string", "websiteUrl": "string", "imageUrl": "string", "streetAddress": "string", "city": "string", "postalCode": "string", "coordsLatitude": 0, "coordsLongitude": 0, "businessType": { … }, "isActive": true, "canMintToken": true, "canChargeToken": true, "canManageUsers": true, "canReceiveDonation": true } }

BUSINESS: Claim campaign reward

Request

Claim campaign reward

Bodyapplication/jsonrequired
campaignIdstringrequired

The campaign id

conditionsDataobject

The campaign condition data

multipliernumber

The campaign multiplier that will be applied to the reward. Default is 1.0

businessIdstring

Business identifier

latitudenumber

geolocation latitude

longitudenumber

geolocation longitude

userIdentifierstring

The user identifier

startDatestring(date-time)

The start date of the claim

endDatestring(date-time)

The end date of the claim

idstring

The id of the user

emailstring

The email of the user

instagramAccountIdstring

The instagramAccountId of the user

externalIdstring

The externalId of the user

curl -i -X POST \
  https://docs.pers.ninja/_mock/swagger/campaign/business/claim \
  -H 'Content-Type: application/json' \
  -H 'x-api-key: YOUR_API_KEY_HERE' \
  -H 'x-project-key: YOUR_API_KEY_HERE' \
  -d '{
    "campaignId": "string",
    "conditionsData": {},
    "multiplier": 0,
    "businessId": "string",
    "latitude": 0,
    "longitude": 0,
    "userIdentifier": "string",
    "startDate": "2019-08-24T14:15:22Z",
    "endDate": "2019-08-24T14:15:22Z",
    "id": "string",
    "email": "string",
    "instagramAccountId": "string",
    "externalId": "string"
  }'

Responses

Campaign reward claimed

Bodyapplication/json
idstringrequired

The id of the campaign user claim

createdAtobjectrequired

The date the campaign user claim was created

userobjectrequired

The user that is claiming the campaign

user.​idstringrequired
user.​emailobject
user.​firstNameobjectrequired

User first name

user.​lastNameobjectrequired

User last name

user.​externalIdobjectrequired

User external id

user.​accountAddressstringrequired

User account address

user.​instagramAccountIdobjectrequired

Instagram account id

user.​googleAccountNameobjectrequired

Google account name

campaignobjectrequired

The campaign that the user is claiming

campaign.​namestringrequired

Campaign name

campaign.​descriptionobjectrequired

Campaign description

campaign.​beneficiaryAccountAddressobjectrequired

Campaign beneficiary account address

campaign.​startDateobjectrequired

Campaign start date, default is the current date

campaign.​endDateobjectrequired

Campaign end date

campaign.​imageUrlobjectrequired

img url

campaign.​externalUrlobjectrequired

Campaign url

campaign.​idstringrequired

Campaign id

campaign.​isActivebooleanrequired

Campaign isActive

campaign.​isTestnetboolean

Campaign isTestnet, this means that the campaign is running on testnet, not mainnet

campaign.​triggerobjectrequired

Campaign trigger: what triggers the campaign, and what are the conditions for the trigger to be activated

campaign.​tokenUnitsArray of stringsrequired

Campaign reward: what are the rewards

campaign.​businessEngagementsArray of stringsrequired

Campaign businesses: what businesses are involved in the campaign

campaign.​createdAtobjectrequired

create date

campaign.​updatedAtobjectrequired

update date

businessobject

The business that the user claimed the campaign for

Response
application/json
{ "id": "string", "createdAt": {}, "user": { "id": "string", "email": {}, "firstName": {}, "lastName": {}, "externalId": {}, "accountAddress": "string", "instagramAccountId": {}, "googleAccountName": {} }, "campaign": { "name": "string", "description": {}, "beneficiaryAccountAddress": {}, "startDate": {}, "endDate": {}, "imageUrl": {}, "externalUrl": {}, "id": "string", "isActive": true, "isTestnet": true, "trigger": {}, "tokenUnits": [ … ], "businessEngagements": [ … ], "createdAt": {}, "updatedAt": {} }, "business": { "id": "string", "email": "string", "accountAddress": "string", "businessLegalName": "string", "displayName": "string", "description": "string", "shortDescription": "string", "websiteUrl": "string", "imageUrl": "string", "streetAddress": "string", "city": "string", "postalCode": "string", "coordsLatitude": 0, "coordsLongitude": 0, "businessType": { … }, "isActive": true, "canMintToken": true, "canChargeToken": true, "canManageUsers": true, "canReceiveDonation": true } }

AUTH USER: Claim campaign reward

Request

Claim campaign reward

Bodyapplication/jsonrequired
campaignIdstringrequired

The campaign id

conditionsDataobject

The campaign condition data

multipliernumber

The campaign multiplier that will be applied to the reward. Default is 1.0

businessIdstring

Business identifier

latitudenumber

geolocation latitude

longitudenumber

geolocation longitude

curl -i -X POST \
  https://docs.pers.ninja/_mock/swagger/campaign/auth/claim \
  -H 'Content-Type: application/json' \
  -H 'x-project-key: YOUR_API_KEY_HERE' \
  -d '{
    "campaignId": "string",
    "conditionsData": {},
    "multiplier": 0,
    "businessId": "string",
    "latitude": 0,
    "longitude": 0
  }'

Responses

Campaign reward claimed

Bodyapplication/json
idstringrequired

The id of the campaign user claim

createdAtobjectrequired

The date the campaign user claim was created

userobjectrequired

The user that is claiming the campaign

user.​idstringrequired
user.​emailobject
user.​firstNameobjectrequired

User first name

user.​lastNameobjectrequired

User last name

user.​externalIdobjectrequired

User external id

user.​accountAddressstringrequired

User account address

user.​instagramAccountIdobjectrequired

Instagram account id

user.​googleAccountNameobjectrequired

Google account name

campaignobjectrequired

The campaign that the user is claiming

campaign.​namestringrequired

Campaign name

campaign.​descriptionobjectrequired

Campaign description

campaign.​beneficiaryAccountAddressobjectrequired

Campaign beneficiary account address

campaign.​startDateobjectrequired

Campaign start date, default is the current date

campaign.​endDateobjectrequired

Campaign end date

campaign.​imageUrlobjectrequired

img url

campaign.​externalUrlobjectrequired

Campaign url

campaign.​idstringrequired

Campaign id

campaign.​isActivebooleanrequired

Campaign isActive

campaign.​isTestnetboolean

Campaign isTestnet, this means that the campaign is running on testnet, not mainnet

campaign.​triggerobjectrequired

Campaign trigger: what triggers the campaign, and what are the conditions for the trigger to be activated

campaign.​tokenUnitsArray of stringsrequired

Campaign reward: what are the rewards

campaign.​businessEngagementsArray of stringsrequired

Campaign businesses: what businesses are involved in the campaign

campaign.​createdAtobjectrequired

create date

campaign.​updatedAtobjectrequired

update date

businessobject

The business that the user claimed the campaign for

Response
application/json
{ "id": "string", "createdAt": {}, "user": { "id": "string", "email": {}, "firstName": {}, "lastName": {}, "externalId": {}, "accountAddress": "string", "instagramAccountId": {}, "googleAccountName": {} }, "campaign": { "name": "string", "description": {}, "beneficiaryAccountAddress": {}, "startDate": {}, "endDate": {}, "imageUrl": {}, "externalUrl": {}, "id": "string", "isActive": true, "isTestnet": true, "trigger": {}, "tokenUnits": [ … ], "businessEngagements": [ … ], "createdAt": {}, "updatedAt": {} }, "business": { "id": "string", "email": "string", "accountAddress": "string", "businessLegalName": "string", "displayName": "string", "description": "string", "shortDescription": "string", "websiteUrl": "string", "imageUrl": "string", "streetAddress": "string", "city": "string", "postalCode": "string", "coordsLatitude": 0, "coordsLongitude": 0, "businessType": { … }, "isActive": true, "canMintToken": true, "canChargeToken": true, "canManageUsers": true, "canReceiveDonation": true } }

AUTH USER: Get claim history

Request

Get claim history

curl -i -X GET \
  https://docs.pers.ninja/_mock/swagger/campaign/auth/claim \
  -H 'x-project-key: YOUR_API_KEY_HERE'

Responses

Claim history

Bodyapplication/jsonArray [
idstringrequired

The id of the campaign user claim

createdAtobjectrequired

The date the campaign user claim was created

userobjectrequired

The user that is claiming the campaign

user.​idstringrequired
user.​emailobject
user.​firstNameobjectrequired

User first name

user.​lastNameobjectrequired

User last name

user.​externalIdobjectrequired

User external id

user.​accountAddressstringrequired

User account address

user.​instagramAccountIdobjectrequired

Instagram account id

user.​googleAccountNameobjectrequired

Google account name

campaignobjectrequired

The campaign that the user is claiming

campaign.​namestringrequired

Campaign name

campaign.​descriptionobjectrequired

Campaign description

campaign.​beneficiaryAccountAddressobjectrequired

Campaign beneficiary account address

campaign.​startDateobjectrequired

Campaign start date, default is the current date

campaign.​endDateobjectrequired

Campaign end date

campaign.​imageUrlobjectrequired

img url

campaign.​externalUrlobjectrequired

Campaign url

campaign.​idstringrequired

Campaign id

campaign.​isActivebooleanrequired

Campaign isActive

campaign.​isTestnetboolean

Campaign isTestnet, this means that the campaign is running on testnet, not mainnet

campaign.​triggerobjectrequired

Campaign trigger: what triggers the campaign, and what are the conditions for the trigger to be activated

campaign.​tokenUnitsArray of stringsrequired

Campaign reward: what are the rewards

campaign.​businessEngagementsArray of stringsrequired

Campaign businesses: what businesses are involved in the campaign

campaign.​createdAtobjectrequired

create date

campaign.​updatedAtobjectrequired

update date

businessobject

The business that the user claimed the campaign for

]
Response
application/json
[ { "id": "string", "createdAt": {}, "user": { … }, "campaign": { … }, "business": { … } } ]

AUTH USER: Get claim history by campaign

Request

Get claim history campaign

Path
campaignIdstringrequired
curl -i -X GET \
  'https://docs.pers.ninja/_mock/swagger/campaign/auth/{campaignId}/claim' \
  -H 'x-project-key: YOUR_API_KEY_HERE'

Responses

Claim history

Bodyapplication/jsonArray [
idstringrequired

The id of the campaign user claim

createdAtobjectrequired

The date the campaign user claim was created

userobjectrequired

The user that is claiming the campaign

user.​idstringrequired
user.​emailobject
user.​firstNameobjectrequired

User first name

user.​lastNameobjectrequired

User last name

user.​externalIdobjectrequired

User external id

user.​accountAddressstringrequired

User account address

user.​instagramAccountIdobjectrequired

Instagram account id

user.​googleAccountNameobjectrequired

Google account name

campaignobjectrequired

The campaign that the user is claiming

campaign.​namestringrequired

Campaign name

campaign.​descriptionobjectrequired

Campaign description

campaign.​beneficiaryAccountAddressobjectrequired

Campaign beneficiary account address

campaign.​startDateobjectrequired

Campaign start date, default is the current date

campaign.​endDateobjectrequired

Campaign end date

campaign.​imageUrlobjectrequired

img url

campaign.​externalUrlobjectrequired

Campaign url

campaign.​idstringrequired

Campaign id

campaign.​isActivebooleanrequired

Campaign isActive

campaign.​isTestnetboolean

Campaign isTestnet, this means that the campaign is running on testnet, not mainnet

campaign.​triggerobjectrequired

Campaign trigger: what triggers the campaign, and what are the conditions for the trigger to be activated

campaign.​tokenUnitsArray of stringsrequired

Campaign reward: what are the rewards

campaign.​businessEngagementsArray of stringsrequired

Campaign businesses: what businesses are involved in the campaign

campaign.​createdAtobjectrequired

create date

campaign.​updatedAtobjectrequired

update date

businessobject

The business that the user claimed the campaign for

]
Response
application/json
[ { "id": "string", "createdAt": {}, "user": { … }, "campaign": { … }, "business": { … } } ]

ADMIN: Get all campaigns claim history

Request

Get all campaigns claim history

curl -i -X GET \
  https://docs.pers.ninja/_mock/swagger/campaign/admin/claim \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'

Responses

Claim history

Bodyapplication/jsonArray [
idstringrequired

The id of the campaign user claim

createdAtobjectrequired

The date the campaign user claim was created

userobjectrequired

The user that is claiming the campaign

user.​idstringrequired
user.​emailobject
user.​firstNameobjectrequired

User first name

user.​lastNameobjectrequired

User last name

user.​externalIdobjectrequired

User external id

user.​accountAddressstringrequired

User account address

user.​instagramAccountIdobjectrequired

Instagram account id

user.​googleAccountNameobjectrequired

Google account name

campaignobjectrequired

The campaign that the user is claiming

campaign.​namestringrequired

Campaign name

campaign.​descriptionobjectrequired

Campaign description

campaign.​beneficiaryAccountAddressobjectrequired

Campaign beneficiary account address

campaign.​startDateobjectrequired

Campaign start date, default is the current date

campaign.​endDateobjectrequired

Campaign end date

campaign.​imageUrlobjectrequired

img url

campaign.​externalUrlobjectrequired

Campaign url

campaign.​idstringrequired

Campaign id

campaign.​isActivebooleanrequired

Campaign isActive

campaign.​isTestnetboolean

Campaign isTestnet, this means that the campaign is running on testnet, not mainnet

campaign.​triggerobjectrequired

Campaign trigger: what triggers the campaign, and what are the conditions for the trigger to be activated

campaign.​tokenUnitsArray of stringsrequired

Campaign reward: what are the rewards

campaign.​businessEngagementsArray of stringsrequired

Campaign businesses: what businesses are involved in the campaign

campaign.​createdAtobjectrequired

create date

campaign.​updatedAtobjectrequired

update date

businessobject

The business that the user claimed the campaign for

]
Response
application/json
[ { "id": "string", "createdAt": {}, "user": { … }, "campaign": { … }, "business": { … } } ]

ADMIN: Get claim history by campaign

Request

Get claim history by campaign

Path
campaignIdstringrequired
curl -i -X GET \
  'https://docs.pers.ninja/_mock/swagger/campaign/admin/{campaignId}/claim' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'

Responses

Claim history

Bodyapplication/jsonArray [
idstringrequired

The id of the campaign user claim

createdAtobjectrequired

The date the campaign user claim was created

userobjectrequired

The user that is claiming the campaign

user.​idstringrequired
user.​emailobject
user.​firstNameobjectrequired

User first name

user.​lastNameobjectrequired

User last name

user.​externalIdobjectrequired

User external id

user.​accountAddressstringrequired

User account address

user.​instagramAccountIdobjectrequired

Instagram account id

user.​googleAccountNameobjectrequired

Google account name

campaignobjectrequired

The campaign that the user is claiming

campaign.​namestringrequired

Campaign name

campaign.​descriptionobjectrequired

Campaign description

campaign.​beneficiaryAccountAddressobjectrequired

Campaign beneficiary account address

campaign.​startDateobjectrequired

Campaign start date, default is the current date

campaign.​endDateobjectrequired

Campaign end date

campaign.​imageUrlobjectrequired

img url

campaign.​externalUrlobjectrequired

Campaign url

campaign.​idstringrequired

Campaign id

campaign.​isActivebooleanrequired

Campaign isActive

campaign.​isTestnetboolean

Campaign isTestnet, this means that the campaign is running on testnet, not mainnet

campaign.​triggerobjectrequired

Campaign trigger: what triggers the campaign, and what are the conditions for the trigger to be activated

campaign.​tokenUnitsArray of stringsrequired

Campaign reward: what are the rewards

campaign.​businessEngagementsArray of stringsrequired

Campaign businesses: what businesses are involved in the campaign

campaign.​createdAtobjectrequired

create date

campaign.​updatedAtobjectrequired

update date

businessobject

The business that the user claimed the campaign for

]
Response
application/json
[ { "id": "string", "createdAt": {}, "user": { … }, "campaign": { … }, "business": { … } } ]

ADMIN: Get all campaigns claim history

Request

Get all campaigns claim history

Path
userIdstringrequired
curl -i -X GET \
  'https://docs.pers.ninja/_mock/swagger/campaign/admin/claim/user/{userId}' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'

Responses

Claim history

Bodyapplication/jsonArray [
idstringrequired

The id of the campaign user claim

createdAtobjectrequired

The date the campaign user claim was created

userobjectrequired

The user that is claiming the campaign

user.​idstringrequired
user.​emailobject
user.​firstNameobjectrequired

User first name

user.​lastNameobjectrequired

User last name

user.​externalIdobjectrequired

User external id

user.​accountAddressstringrequired

User account address

user.​instagramAccountIdobjectrequired

Instagram account id

user.​googleAccountNameobjectrequired

Google account name

campaignobjectrequired

The campaign that the user is claiming

campaign.​namestringrequired

Campaign name

campaign.​descriptionobjectrequired

Campaign description

campaign.​beneficiaryAccountAddressobjectrequired

Campaign beneficiary account address

campaign.​startDateobjectrequired

Campaign start date, default is the current date

campaign.​endDateobjectrequired

Campaign end date

campaign.​imageUrlobjectrequired

img url

campaign.​externalUrlobjectrequired

Campaign url

campaign.​idstringrequired

Campaign id

campaign.​isActivebooleanrequired

Campaign isActive

campaign.​isTestnetboolean

Campaign isTestnet, this means that the campaign is running on testnet, not mainnet

campaign.​triggerobjectrequired

Campaign trigger: what triggers the campaign, and what are the conditions for the trigger to be activated

campaign.​tokenUnitsArray of stringsrequired

Campaign reward: what are the rewards

campaign.​businessEngagementsArray of stringsrequired

Campaign businesses: what businesses are involved in the campaign

campaign.​createdAtobjectrequired

create date

campaign.​updatedAtobjectrequired

update date

businessobject

The business that the user claimed the campaign for

]
Response
application/json
[ { "id": "string", "createdAt": {}, "user": { … }, "campaign": { … }, "business": { … } } ]

ADMIN: Get all campaigns claim history

Request

Get all campaigns claim history

Path
businessIdstringrequired
curl -i -X GET \
  'https://docs.pers.ninja/_mock/swagger/campaign/admin/claim/business/{businessId}' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'

Responses

Claim history

Bodyapplication/jsonArray [
idstringrequired

The id of the campaign user claim

createdAtobjectrequired

The date the campaign user claim was created

userobjectrequired

The user that is claiming the campaign

user.​idstringrequired
user.​emailobject
user.​firstNameobjectrequired

User first name

user.​lastNameobjectrequired

User last name

user.​externalIdobjectrequired

User external id

user.​accountAddressstringrequired

User account address

user.​instagramAccountIdobjectrequired

Instagram account id

user.​googleAccountNameobjectrequired

Google account name

campaignobjectrequired

The campaign that the user is claiming

campaign.​namestringrequired

Campaign name

campaign.​descriptionobjectrequired

Campaign description

campaign.​beneficiaryAccountAddressobjectrequired

Campaign beneficiary account address

campaign.​startDateobjectrequired

Campaign start date, default is the current date

campaign.​endDateobjectrequired

Campaign end date

campaign.​imageUrlobjectrequired

img url

campaign.​externalUrlobjectrequired

Campaign url

campaign.​idstringrequired

Campaign id

campaign.​isActivebooleanrequired

Campaign isActive

campaign.​isTestnetboolean

Campaign isTestnet, this means that the campaign is running on testnet, not mainnet

campaign.​triggerobjectrequired

Campaign trigger: what triggers the campaign, and what are the conditions for the trigger to be activated

campaign.​tokenUnitsArray of stringsrequired

Campaign reward: what are the rewards

campaign.​businessEngagementsArray of stringsrequired

Campaign businesses: what businesses are involved in the campaign

campaign.​createdAtobjectrequired

create date

campaign.​updatedAtobjectrequired

update date

businessobject

The business that the user claimed the campaign for

]
Response
application/json
[ { "id": "string", "createdAt": {}, "user": { … }, "campaign": { … }, "business": { … } } ]

Redemption

Operations

Description

The Redemption module facilitates the exchange rules of one type of token for another, providing a flexible and rewarding experience for users. This module is essential for maintaining the value and utility of tokens within the SaaS PERS ecosystem. Users can redeem their tokens for various rewards, including products, services, or other token types, thus enhancing their engagement and satisfaction.
The Redemption module supports a streamlined and efficient redemption process, ensuring that users can easily and quickly access their desired rewards that are previously listed on the system. By offering diverse redemption options, this module helps businesses maintain a vibrant and attractive rewards program for their business and together with the partners ecosystem.
Redemption Module

Get all active redemptions

Request

Get all active redemptions

curl -i -X GET \
  https://docs.pers.ninja/_mock/swagger/redemption \
  -H 'x-project-key: YOUR_API_KEY_HERE'

Responses

Redemptions

Bodyapplication/jsonArray [
idstring

Redemption id

descriptionstring

Description of the redemption

namestring

Name of the redemption

imageUrlstring

Image url of the redemption

isActivebooleanrequired

Redemptio is active

creditTokenAmountnumberrequired

The amount of credit tokens needed to redeem the redemption tokens

typeobjectrequired

The redemption type

type.​namestringrequired

Redemption type name

type.​descriptionstring

Redemption type description

type.​imageUrlstring

Redemption type image url

type.​idnumberrequired

Redemption type id

tokenUnitsArray of stringsrequired

The redemption tokens to be redeemed

maxTotalSupplyobject

The maximum total supply of the redemption

availableSupplyobject

The available supply of the redemption

maxPerUserobject

The maximum redemption per user

minUserStatusTypeobject

The minimum user status type to redeem the redemption

]
Response
application/json
[ { "id": "string", "description": "string", "name": "string", "imageUrl": "string", "isActive": true, "creditTokenAmount": 0, "type": { … }, "tokenUnits": [ … ], "maxTotalSupply": {}, "availableSupply": {}, "maxPerUser": {}, "minUserStatusType": { … } } ]

ADMIN: Get all redemptions

Request

ADMIN: Get all redemptions

Query
activestring

Filter by active status

curl -i -X GET \
  'https://docs.pers.ninja/_mock/swagger/redemption/admin?active=string' \
  -H 'x-project-key: YOUR_API_KEY_HERE'

Responses

Redemptions

Bodyapplication/jsonArray [
idstring

Redemption id

descriptionstring

Description of the redemption

namestring

Name of the redemption

imageUrlstring

Image url of the redemption

isActivebooleanrequired

Redemptio is active

creditTokenAmountnumberrequired

The amount of credit tokens needed to redeem the redemption tokens

typeobjectrequired

The redemption type

type.​namestringrequired

Redemption type name

type.​descriptionstring

Redemption type description

type.​imageUrlstring

Redemption type image url

type.​idnumberrequired

Redemption type id

tokenUnitsArray of stringsrequired

The redemption tokens to be redeemed

maxTotalSupplyobject

The maximum total supply of the redemption

availableSupplyobject

The available supply of the redemption

maxPerUserobject

The maximum redemption per user

minUserStatusTypeobject

The minimum user status type to redeem the redemption

]
Response
application/json
[ { "id": "string", "description": "string", "name": "string", "imageUrl": "string", "isActive": true, "creditTokenAmount": 0, "type": { … }, "tokenUnits": [ … ], "maxTotalSupply": {}, "availableSupply": {}, "maxPerUser": {}, "minUserStatusType": { … } } ]

ADMIN: Create a new redemption

Request

Create a new redemption

Bodyapplication/jsonrequired
creditTokenAmountnumber

The amount of credit tokens needed to redeem the redemption tokens

descriptionstring

Description of the redemption

namestring

Name of the redemption

imageUrlstring

Image url of the redemption

redemptionTypeIdnumber

Redemption type id

minUserStatusTypeIdnumber

min user status type id to redeem the redemption

maxTotalSupplynumber

The maximum total supply of the redemption

maxPerUsernumber

The maximum redemption per user

curl -i -X POST \
  https://docs.pers.ninja/_mock/swagger/redemption/admin \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "creditTokenAmount": 0,
    "description": "string",
    "name": "string",
    "imageUrl": "string",
    "redemptionTypeId": 0,
    "minUserStatusTypeId": 0,
    "maxTotalSupply": 0,
    "maxPerUser": 0
  }'

Responses

Redemption created

Bodyapplication/json
idstring

Redemption id

descriptionstring

Description of the redemption

namestring

Name of the redemption

imageUrlstring

Image url of the redemption

isActivebooleanrequired

Redemptio is active

creditTokenAmountnumberrequired

The amount of credit tokens needed to redeem the redemption tokens

typeobjectrequired

The redemption type

type.​namestringrequired

Redemption type name

type.​descriptionstring

Redemption type description

type.​imageUrlstring

Redemption type image url

type.​idnumberrequired

Redemption type id

tokenUnitsArray of stringsrequired

The redemption tokens to be redeemed

maxTotalSupplyobject

The maximum total supply of the redemption

availableSupplyobject

The available supply of the redemption

maxPerUserobject

The maximum redemption per user

minUserStatusTypeobject

The minimum user status type to redeem the redemption

Response
application/json
{ "id": "string", "description": "string", "name": "string", "imageUrl": "string", "isActive": true, "creditTokenAmount": 0, "type": { "name": "string", "description": "string", "imageUrl": "string", "id": 0 }, "tokenUnits": [ "string" ], "maxTotalSupply": {}, "availableSupply": {}, "maxPerUser": {}, "minUserStatusType": { "name": "string", "description": "string", "minTokenBalance": 0, "discountPercentage": 0, "imageUrl": "string", "id": 0, "eligibleTokenAddresses": [ … ] } }

Get redemption types

Request

Get all redemption types

curl -i -X GET \
  https://docs.pers.ninja/_mock/swagger/redemption/type \
  -H 'x-project-key: YOUR_API_KEY_HERE'

Responses

Redemption types

Bodyapplication/jsonArray [
namestringrequired

Redemption type name

descriptionstring

Redemption type description

imageUrlstring

Redemption type image url

idnumberrequired

Redemption type id

]
Response
application/json
[ { "name": "string", "description": "string", "imageUrl": "string", "id": 0 } ]

Get redemption

Request

Get redemption by ID

Path
idstringrequired
curl -i -X GET \
  'https://docs.pers.ninja/_mock/swagger/redemption/{id}' \
  -H 'x-project-key: YOUR_API_KEY_HERE'

Responses

Redemption

Bodyapplication/json
idstring

Redemption id

descriptionstring

Description of the redemption

namestring

Name of the redemption

imageUrlstring

Image url of the redemption

isActivebooleanrequired

Redemptio is active

creditTokenAmountnumberrequired

The amount of credit tokens needed to redeem the redemption tokens

typeobjectrequired

The redemption type

type.​namestringrequired

Redemption type name

type.​descriptionstring

Redemption type description

type.​imageUrlstring

Redemption type image url

type.​idnumberrequired

Redemption type id

tokenUnitsArray of stringsrequired

The redemption tokens to be redeemed

maxTotalSupplyobject

The maximum total supply of the redemption

availableSupplyobject

The available supply of the redemption

maxPerUserobject

The maximum redemption per user

minUserStatusTypeobject

The minimum user status type to redeem the redemption

Response
application/json
{ "id": "string", "description": "string", "name": "string", "imageUrl": "string", "isActive": true, "creditTokenAmount": 0, "type": { "name": "string", "description": "string", "imageUrl": "string", "id": 0 }, "tokenUnits": [ "string" ], "maxTotalSupply": {}, "availableSupply": {}, "maxPerUser": {}, "minUserStatusType": { "name": "string", "description": "string", "minTokenBalance": 0, "discountPercentage": 0, "imageUrl": "string", "id": 0, "eligibleTokenAddresses": [ … ] } }

ADMIN: Update redemption

Request

Update redemption information

Path
idstringrequired
Bodyapplication/jsonrequired
creditTokenAmountnumber

The amount of credit tokens needed to redeem the redemption tokens

descriptionstring

Description of the redemption

namestring

Name of the redemption

imageUrlstring

Image url of the redemption

redemptionTypeIdnumber

Redemption type id

minUserStatusTypeIdnumber

min user status type id to redeem the redemption

maxTotalSupplynumber

The maximum total supply of the redemption

maxPerUsernumber

The maximum redemption per user

curl -i -X PUT \
  'https://docs.pers.ninja/_mock/swagger/redemption/admin/{id}' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "creditTokenAmount": 0,
    "description": "string",
    "name": "string",
    "imageUrl": "string",
    "redemptionTypeId": 0,
    "minUserStatusTypeId": 0,
    "maxTotalSupply": 0,
    "maxPerUser": 0
  }'

Responses

Redemption updated

Bodyapplication/json
idstring

Redemption id

descriptionstring

Description of the redemption

namestring

Name of the redemption

imageUrlstring

Image url of the redemption

isActivebooleanrequired

Redemptio is active

creditTokenAmountnumberrequired

The amount of credit tokens needed to redeem the redemption tokens

typeobjectrequired

The redemption type

type.​namestringrequired

Redemption type name

type.​descriptionstring

Redemption type description

type.​imageUrlstring

Redemption type image url

type.​idnumberrequired

Redemption type id

tokenUnitsArray of stringsrequired

The redemption tokens to be redeemed

maxTotalSupplyobject

The maximum total supply of the redemption

availableSupplyobject

The available supply of the redemption

maxPerUserobject

The maximum redemption per user

minUserStatusTypeobject

The minimum user status type to redeem the redemption

Response
application/json
{ "id": "string", "description": "string", "name": "string", "imageUrl": "string", "isActive": true, "creditTokenAmount": 0, "type": { "name": "string", "description": "string", "imageUrl": "string", "id": 0 }, "tokenUnits": [ "string" ], "maxTotalSupply": {}, "availableSupply": {}, "maxPerUser": {}, "minUserStatusType": { "name": "string", "description": "string", "minTokenBalance": 0, "discountPercentage": 0, "imageUrl": "string", "id": 0, "eligibleTokenAddresses": [ … ] } }

ADMIN: Delete redemption

Request

Delete redemption

Path
idstringrequired
curl -i -X DELETE \
  'https://docs.pers.ninja/_mock/swagger/redemption/admin/{id}' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'

Responses

Redemption deleted

Bodyapplication/json
boolean
Response
application/json
true

ADMIN: Activate redemption

Request

Activate redemption

Path
idstringrequired
curl -i -X PUT \
  'https://docs.pers.ninja/_mock/swagger/redemption/admin/{id}/toggle-active' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'

Responses

Redemption activated

Bodyapplication/json
idstring

Redemption id

descriptionstring

Description of the redemption

namestring

Name of the redemption

imageUrlstring

Image url of the redemption

isActivebooleanrequired

Redemptio is active

creditTokenAmountnumberrequired

The amount of credit tokens needed to redeem the redemption tokens

typeobjectrequired

The redemption type

type.​namestringrequired

Redemption type name

type.​descriptionstring

Redemption type description

type.​imageUrlstring

Redemption type image url

type.​idnumberrequired

Redemption type id

tokenUnitsArray of stringsrequired

The redemption tokens to be redeemed

maxTotalSupplyobject

The maximum total supply of the redemption

availableSupplyobject

The available supply of the redemption

maxPerUserobject

The maximum redemption per user

minUserStatusTypeobject

The minimum user status type to redeem the redemption

Response
application/json
{ "id": "string", "description": "string", "name": "string", "imageUrl": "string", "isActive": true, "creditTokenAmount": 0, "type": { "name": "string", "description": "string", "imageUrl": "string", "id": 0 }, "tokenUnits": [ "string" ], "maxTotalSupply": {}, "availableSupply": {}, "maxPerUser": {}, "minUserStatusType": { "name": "string", "description": "string", "minTokenBalance": 0, "discountPercentage": 0, "imageUrl": "string", "id": 0, "eligibleTokenAddresses": [ … ] } }

ADMIN: Create redemption token unit

Request

Create redemption token unit

Path
idstringrequired
Bodyapplication/jsonrequired
tokenIdstringrequired

Token id

tokenMetadataIncrementalIdnumber

token metadata incremental id for the token unit, this is used to identify the specific token metadata that should be minted

amountnumberrequired

Token unit amount is the amount of tokens that the user will receive when aquiring the token unit

maxAmountnumber

Token unit max amount, this is the maximum amount of tokens that the user can receive when aquiring the token unit. This is relevant e.g. in campaigns where a user may receive token units per revenue spent etc

curl -i -X POST \
  'https://docs.pers.ninja/_mock/swagger/redemption/admin/{id}/token-units' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "tokenId": "string",
    "tokenMetadataIncrementalId": 0,
    "amount": 0,
    "maxAmount": 0
  }'

Responses

Redemption token unit updated

Bodyapplication/json
idstring

Redemption id

descriptionstring

Description of the redemption

namestring

Name of the redemption

imageUrlstring

Image url of the redemption

isActivebooleanrequired

Redemptio is active

creditTokenAmountnumberrequired

The amount of credit tokens needed to redeem the redemption tokens

typeobjectrequired

The redemption type

type.​namestringrequired

Redemption type name

type.​descriptionstring

Redemption type description

type.​imageUrlstring

Redemption type image url

type.​idnumberrequired

Redemption type id

tokenUnitsArray of stringsrequired

The redemption tokens to be redeemed

maxTotalSupplyobject

The maximum total supply of the redemption

availableSupplyobject

The available supply of the redemption

maxPerUserobject

The maximum redemption per user

minUserStatusTypeobject

The minimum user status type to redeem the redemption

Response
application/json
{ "id": "string", "description": "string", "name": "string", "imageUrl": "string", "isActive": true, "creditTokenAmount": 0, "type": { "name": "string", "description": "string", "imageUrl": "string", "id": 0 }, "tokenUnits": [ "string" ], "maxTotalSupply": {}, "availableSupply": {}, "maxPerUser": {}, "minUserStatusType": { "name": "string", "description": "string", "minTokenBalance": 0, "discountPercentage": 0, "imageUrl": "string", "id": 0, "eligibleTokenAddresses": [ … ] } }

ADMIN: Update redemption token unit

Request

Update redemption token unit

Path
idstringrequired
tokenUnitIdstringrequired
Bodyapplication/jsonrequired
tokenIdstringrequired

Token id

tokenMetadataIncrementalIdnumber

token metadata incremental id for the token unit, this is used to identify the specific token metadata that should be minted

amountnumberrequired

Token unit amount is the amount of tokens that the user will receive when aquiring the token unit

maxAmountnumber

Token unit max amount, this is the maximum amount of tokens that the user can receive when aquiring the token unit. This is relevant e.g. in campaigns where a user may receive token units per revenue spent etc

curl -i -X PUT \
  'https://docs.pers.ninja/_mock/swagger/redemption/admin/{id}/token-units/{tokenUnitId}' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "tokenId": "string",
    "tokenMetadataIncrementalId": 0,
    "amount": 0,
    "maxAmount": 0
  }'

Responses

Redemption token unit updated

Bodyapplication/json
idstring

Redemption id

descriptionstring

Description of the redemption

namestring

Name of the redemption

imageUrlstring

Image url of the redemption

isActivebooleanrequired

Redemptio is active

creditTokenAmountnumberrequired

The amount of credit tokens needed to redeem the redemption tokens

typeobjectrequired

The redemption type

type.​namestringrequired

Redemption type name

type.​descriptionstring

Redemption type description

type.​imageUrlstring

Redemption type image url

type.​idnumberrequired

Redemption type id

tokenUnitsArray of stringsrequired

The redemption tokens to be redeemed

maxTotalSupplyobject

The maximum total supply of the redemption

availableSupplyobject

The available supply of the redemption

maxPerUserobject

The maximum redemption per user

minUserStatusTypeobject

The minimum user status type to redeem the redemption

Response
application/json
{ "id": "string", "description": "string", "name": "string", "imageUrl": "string", "isActive": true, "creditTokenAmount": 0, "type": { "name": "string", "description": "string", "imageUrl": "string", "id": 0 }, "tokenUnits": [ "string" ], "maxTotalSupply": {}, "availableSupply": {}, "maxPerUser": {}, "minUserStatusType": { "name": "string", "description": "string", "minTokenBalance": 0, "discountPercentage": 0, "imageUrl": "string", "id": 0, "eligibleTokenAddresses": [ … ] } }

ADMIN: Remove redemption token unit

Request

Remove redemption token unit

Path
idstringrequired
tokenUnitIdstringrequired
curl -i -X DELETE \
  'https://docs.pers.ninja/_mock/swagger/redemption/admin/{id}/token-units/{tokenUnitId}' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'

Responses

Redemption token unit removed

Bodyapplication/json
idstring

Redemption id

descriptionstring

Description of the redemption

namestring

Name of the redemption

imageUrlstring

Image url of the redemption

isActivebooleanrequired

Redemptio is active

creditTokenAmountnumberrequired

The amount of credit tokens needed to redeem the redemption tokens

typeobjectrequired

The redemption type

type.​namestringrequired

Redemption type name

type.​descriptionstring

Redemption type description

type.​imageUrlstring

Redemption type image url

type.​idnumberrequired

Redemption type id

tokenUnitsArray of stringsrequired

The redemption tokens to be redeemed

maxTotalSupplyobject

The maximum total supply of the redemption

availableSupplyobject

The available supply of the redemption

maxPerUserobject

The maximum redemption per user

minUserStatusTypeobject

The minimum user status type to redeem the redemption

Response
application/json
{ "id": "string", "description": "string", "name": "string", "imageUrl": "string", "isActive": true, "creditTokenAmount": 0, "type": { "name": "string", "description": "string", "imageUrl": "string", "id": 0 }, "tokenUnits": [ "string" ], "maxTotalSupply": {}, "availableSupply": {}, "maxPerUser": {}, "minUserStatusType": { "name": "string", "description": "string", "minTokenBalance": 0, "discountPercentage": 0, "imageUrl": "string", "id": 0, "eligibleTokenAddresses": [ … ] } }

ADMIN: Create a new redemption type

Request

Create a new redemption type

Bodyapplication/jsonrequired
namestringrequired

Redemption type name

descriptionstring

Redemption type description

imageUrlstring

Redemption type image url

curl -i -X POST \
  https://docs.pers.ninja/_mock/swagger/redemption/admin/type \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "name": "string",
    "description": "string",
    "imageUrl": "string"
  }'

Responses

Redemption type created

Bodyapplication/json
namestringrequired

Redemption type name

descriptionstring

Redemption type description

imageUrlstring

Redemption type image url

idnumberrequired

Redemption type id

Response
application/json
{ "name": "string", "description": "string", "imageUrl": "string", "id": 0 }

AUTH USER: Redeem a redemption

Request

Redeem a redemption

Bodyapplication/jsonrequired
redemptionIdstringrequired

The redemption id

curl -i -X POST \
  https://docs.pers.ninja/_mock/swagger/redemption/auth/redeem \
  -H 'Content-Type: application/json' \
  -H 'x-project-key: YOUR_API_KEY_HERE' \
  -d '{
    "redemptionId": "string"
  }'

Responses

Redemption redeemed

Bodyapplication/json
idstringrequired

The id of the redemption user redeem

userIdstringrequired

The user id that is claiming the redemption

redemptionIdstringrequired

The redemption that the user is redeeming

transactionIdsArray of stringsrequired

The transaction ids that resulted from the user redeeming the redemption

transactionsArray of stringsrequired

The transactions that resulted from the user redeeming the redemption

Response
application/json
{ "id": "string", "userId": "string", "redemptionId": "string", "transactionIds": [ "string" ], "transactions": [ "string" ] }

AUT USER: Get all redemption user redeems

Request

Get all redemption user redeems

curl -i -X GET \
  https://docs.pers.ninja/_mock/swagger/redemption/auth/redeem \
  -H 'x-project-key: YOUR_API_KEY_HERE'

Responses

Redemption user redeems

Bodyapplication/jsonArray [
idstringrequired

The id of the redemption user redeem

userIdstringrequired

The user id that is claiming the redemption

redemptionIdstringrequired

The redemption that the user is redeeming

transactionIdsArray of stringsrequired

The transaction ids that resulted from the user redeeming the redemption

]
Response
application/json
[ { "id": "string", "userId": "string", "redemptionId": "string", "transactionIds": [ … ] } ]

Get redemption redeems amount available

Request

Get redemption redeems amount available

Path
idstringrequired
curl -i -X GET \
  'https://docs.pers.ninja/_mock/swagger/redemption/{id}/available-supply' \
  -H 'x-project-key: YOUR_API_KEY_HERE'

Responses

Redemption redeems amount available

Bodyapplication/json
number
Response
application/json
0

Purchase

Operations

Description

The Purchase module facilitates the recharging of balances through credit card payments. This module is optional and helps maintain the fluidity of the reward system by allowing users to top-up their accounts effortlessly. It supports secure and efficient payment processing, ensuring that users can quickly and safely add funds to their accounts. The Purchase module is designed with high security standards to protect user information and transaction data, thereby ensuring a trustworthy environment for financial operations within the SaaS PERS ecosystem. Its seamless integration with the token and rewards system enables a cohesive and user-friendly experience.
Purchase Module

Stripe webhook

Request

webhook for stripe payment events

curl -i -X POST \
  https://docs.pers.ninja/_mock/swagger/purchase/stripe-webhook

Responses

webhook handle success

Bodyapplication/json
boolean
Response
application/json
true

ADMIN: Create a new purchase Token

Request

Create a new purchase Token

Bodyapplication/jsonrequired
tokenIdstringrequired

Token id

descriptionstringrequired

Purchase Token description

purchaseTypeIdnumberrequired

Purchase Type id

curl -i -X POST \
  https://docs.pers.ninja/_mock/swagger/purchase/admin/token \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "tokenId": "string",
    "description": "string",
    "purchaseTypeId": 0
  }'

Responses

Token created

Bodyapplication/json
idstringrequired

Purchase Token id

descriptionstringrequired

Purchase Token description

tokenobjectrequired

Token

token.​idstringrequired

Id of the token

token.​contractAddressstringrequired

Address of the token

token.​metadataobject

Metadata of the token, this is optional and can be null in case of Point token

token.​abiobjectrequired

this is the abi of the contract, this is the interface of the contract to interact with it

token.​chainIdnumberrequired

this is the chain id of the chain where the token is deployed

token.​abiUrlobjectrequired

this is the url of the abi of the contract, to be used to fetch the abi of the contract

token.​namestring

this is the name of the token contract

token.​symbolstring

this is the symbol of the token contract, this is optional and can be null

token.​decimalsnumber

this is the decimals of the token. This is optional and only used for ERC20 tokens (Points)

token.​isActivebooleanrequired

This can be used to enable or disable the token

token.​isGallerybooleanrequired

This can be used to enable or disable the token for gallery

token.​typestringrequired

This is the underlying web3 native type of the token contract

Enum"ERC20""ERC721""ERC1155"
contractTokenIdobjectrequired

optional contract token id

purchaseTypeobjectrequired

Purchase Type

purchaseType.​conversionRatenumberrequired

Conversion Rate of the token

purchaseType.​currencystringrequired

Currency of the token

Value"eur"
purchaseType.​idnumberrequired

Purchase Type id

isActivebooleanrequired

Purchase Token isActive

Response
application/json
{ "id": "string", "description": "string", "token": { "id": "string", "contractAddress": "string", "metadata": {}, "abi": {}, "chainId": 0, "abiUrl": {}, "name": "string", "symbol": "string", "decimals": 0, "isActive": true, "isGallery": true, "type": "ERC20" }, "contractTokenId": {}, "purchaseType": { "conversionRate": 0, "currency": "eur", "id": 0 }, "isActive": true }

ADMIN: Update an existing purchase Token

Request

Update an existing purchase Token

Path
idstringrequired
Bodyapplication/jsonrequired
descriptionstring

Purchase Token description

isActiveboolean

Purchase Token isActive

curl -i -X PUT \
  'https://docs.pers.ninja/_mock/swagger/purchase/admin/token/{id}' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "description": "string",
    "isActive": true
  }'

Responses

Token updated

Bodyapplication/json
idstringrequired

Purchase Token id

descriptionstringrequired

Purchase Token description

tokenobjectrequired

Token

token.​idstringrequired

Id of the token

token.​contractAddressstringrequired

Address of the token

token.​metadataobject

Metadata of the token, this is optional and can be null in case of Point token

token.​abiobjectrequired

this is the abi of the contract, this is the interface of the contract to interact with it

token.​chainIdnumberrequired

this is the chain id of the chain where the token is deployed

token.​abiUrlobjectrequired

this is the url of the abi of the contract, to be used to fetch the abi of the contract

token.​namestring

this is the name of the token contract

token.​symbolstring

this is the symbol of the token contract, this is optional and can be null

token.​decimalsnumber

this is the decimals of the token. This is optional and only used for ERC20 tokens (Points)

token.​isActivebooleanrequired

This can be used to enable or disable the token

token.​isGallerybooleanrequired

This can be used to enable or disable the token for gallery

token.​typestringrequired

This is the underlying web3 native type of the token contract

Enum"ERC20""ERC721""ERC1155"
contractTokenIdobjectrequired

optional contract token id

purchaseTypeobjectrequired

Purchase Type

purchaseType.​conversionRatenumberrequired

Conversion Rate of the token

purchaseType.​currencystringrequired

Currency of the token

Value"eur"
purchaseType.​idnumberrequired

Purchase Type id

isActivebooleanrequired

Purchase Token isActive

Response
application/json
{ "id": "string", "description": "string", "token": { "id": "string", "contractAddress": "string", "metadata": {}, "abi": {}, "chainId": 0, "abiUrl": {}, "name": "string", "symbol": "string", "decimals": 0, "isActive": true, "isGallery": true, "type": "ERC20" }, "contractTokenId": {}, "purchaseType": { "conversionRate": 0, "currency": "eur", "id": 0 }, "isActive": true }

ADMIN: Delete an existing purchase Token

Request

Delete an existing purchase Token

Path
idstringrequired
curl -i -X DELETE \
  'https://docs.pers.ninja/_mock/swagger/purchase/admin/token/{id}' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'

Responses

Token deleted

Bodyapplication/json
boolean
Response
application/json
true

ADMIN: Create a new purchase Type

Request

Create a new purchase Type

Bodyapplication/jsonrequired
conversionRatenumberrequired

Conversion Rate of the token

currencystringrequired

Currency of the token

Value"eur"
curl -i -X POST \
  https://docs.pers.ninja/_mock/swagger/purchase/admin/type \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "conversionRate": 0,
    "currency": "eur"
  }'

Responses

Purchase Type created

Bodyapplication/json
conversionRatenumberrequired

Conversion Rate of the token

currencystringrequired

Currency of the token

Value"eur"
Response
application/json
{ "conversionRate": 0, "currency": "eur" }

ADMIN: Create a new donation Type

Request

Create a new donation Type

Bodyapplication/jsonrequired
percentagenumberrequired

Percentage of donation

idnumberrequired

Id of the donation type

curl -i -X POST \
  https://docs.pers.ninja/_mock/swagger/purchase/admin/donation/type \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "percentage": 0,
    "id": 0
  }'

Responses

Purchase Type created

Bodyapplication/json
percentagenumberrequired

Percentage of donation

idnumberrequired

Id of the donation type

Response
application/json
{ "percentage": 0, "id": 0 }

Get all donation Types

Request

Get all donation Types

curl -i -X GET \
  https://docs.pers.ninja/_mock/swagger/purchase/donation/type \
  -H 'x-project-key: YOUR_API_KEY_HERE'

Responses

Donation Types

Bodyapplication/jsonArray [
percentagenumberrequired

Percentage of donation

idnumberrequired

Id of the donation type

]
Response
application/json
[ { "percentage": 0, "id": 0 } ]

get active Purchase Tokens

Request

Get active Purchase Tokens

Query
activestring

Filter by active status

curl -i -X GET \
  'https://docs.pers.ninja/_mock/swagger/purchase/token?active=string' \
  -H 'x-project-key: YOUR_API_KEY_HERE'

Responses

Active Purchase Tokens

Bodyapplication/jsonArray [
idstringrequired

Purchase Token id

descriptionstringrequired

Purchase Token description

tokenobjectrequired

Token

token.​idstringrequired

Id of the token

token.​contractAddressstringrequired

Address of the token

token.​metadataobject

Metadata of the token, this is optional and can be null in case of Point token

token.​abiobjectrequired

this is the abi of the contract, this is the interface of the contract to interact with it

token.​chainIdnumberrequired

this is the chain id of the chain where the token is deployed

token.​abiUrlobjectrequired

this is the url of the abi of the contract, to be used to fetch the abi of the contract

token.​namestring

this is the name of the token contract

token.​symbolstring

this is the symbol of the token contract, this is optional and can be null

token.​decimalsnumber

this is the decimals of the token. This is optional and only used for ERC20 tokens (Points)

token.​isActivebooleanrequired

This can be used to enable or disable the token

token.​isGallerybooleanrequired

This can be used to enable or disable the token for gallery

token.​typestringrequired

This is the underlying web3 native type of the token contract

Enum"ERC20""ERC721""ERC1155"
contractTokenIdobjectrequired

optional contract token id

purchaseTypeobjectrequired

Purchase Type

purchaseType.​conversionRatenumberrequired

Conversion Rate of the token

purchaseType.​currencystringrequired

Currency of the token

Value"eur"
purchaseType.​idnumberrequired

Purchase Type id

isActivebooleanrequired

Purchase Token isActive

]
Response
application/json
[ { "id": "string", "description": "string", "token": { … }, "contractTokenId": {}, "purchaseType": { … }, "isActive": true } ]

AUTH USER: Create Purchase

Request

Create Purchase and return including Payment Client Secret

Bodyapplication/jsonrequired
quantitynumberrequired

Quantity of tokens to purchase

paymentIntentIdstringrequired

Payment Intent Id

purchaseTokenIdstringrequired

Purchase Token id

donationTypeIdnumber

Donation Type

donationAccountAddressstring

Donation Account Address

curl -i -X POST \
  https://docs.pers.ninja/_mock/swagger/purchase/auth \
  -H 'Content-Type: application/json' \
  -H 'x-project-key: YOUR_API_KEY_HERE' \
  -d '{
    "quantity": 0,
    "paymentIntentId": "string",
    "purchaseTokenId": "string",
    "donationTypeId": 0,
    "donationAccountAddress": "string"
  }'

Responses

Purchase Created

Bodyapplication/json
idstringrequired

Purchase id

stripePaymentIntentIdstringrequired

Stripe Payment Intent id

statusobjectrequired

Purchase status

amountnumberrequired

Amount to pay in cents

currencystringrequired

Currency

Value"eur"
quantitynumberrequired

Quantity of tokens to purchase

purchaseTokenobjectrequired

Purchase Token

purchaseToken.​idstringrequired

Purchase Token id

purchaseToken.​descriptionstringrequired

Purchase Token description

purchaseToken.​tokenobjectrequired

Token

purchaseToken.​token.​idstringrequired

Id of the token

purchaseToken.​token.​contractAddressstringrequired

Address of the token

purchaseToken.​token.​metadataobject

Metadata of the token, this is optional and can be null in case of Point token

purchaseToken.​token.​abiobjectrequired

this is the abi of the contract, this is the interface of the contract to interact with it

purchaseToken.​token.​chainIdnumberrequired

this is the chain id of the chain where the token is deployed

purchaseToken.​token.​abiUrlobjectrequired

this is the url of the abi of the contract, to be used to fetch the abi of the contract

purchaseToken.​token.​namestring

this is the name of the token contract

purchaseToken.​token.​symbolstring

this is the symbol of the token contract, this is optional and can be null

purchaseToken.​token.​decimalsnumber

this is the decimals of the token. This is optional and only used for ERC20 tokens (Points)

purchaseToken.​token.​isActivebooleanrequired

This can be used to enable or disable the token

purchaseToken.​token.​isGallerybooleanrequired

This can be used to enable or disable the token for gallery

purchaseToken.​token.​typestringrequired

This is the underlying web3 native type of the token contract

Enum"ERC20""ERC721""ERC1155"
purchaseToken.​contractTokenIdobjectrequired

optional contract token id

purchaseToken.​purchaseTypeobjectrequired

Purchase Type

purchaseToken.​purchaseType.​conversionRatenumberrequired

Conversion Rate of the token

purchaseToken.​purchaseType.​currencystringrequired

Currency of the token

Value"eur"
purchaseToken.​purchaseType.​idnumberrequired

Purchase Type id

purchaseToken.​isActivebooleanrequired

Purchase Token isActive

userobjectrequired

User

user.​idstringrequired
user.​emailobject
user.​firstNameobjectrequired

User first name

user.​lastNameobjectrequired

User last name

user.​externalIdobjectrequired

User external id

user.​accountAddressstringrequired

User account address

user.​instagramAccountIdobjectrequired

Instagram account id

user.​googleAccountNameobjectrequired

Google account name

businessobjectrequired

Business

business.​idstringrequired

The id of the business, this is unique and will be used to identify the business.

business.​emailstring

The email of the business, this is unique and will be used to identify the business.

business.​accountAddressstring

The address of the business, this is the address that will be shown to the public.

business.​businessLegalNamestring

The legal name of the business, this is the name that will be used for legal purposes.

business.​displayNamestring

The display name of the business, this is the name that will be shown to the public.

business.​descriptionstring

The description of the business, this is the description that will be shown to the public.

business.​shortDescriptionstring

The short description of the business, this is the description that will be shown to the public.

business.​websiteUrlstring

The website of the business, this is the website that will be shown to the public.

business.​imageUrlstring

The image of the business, this is the image that will be shown to the public.

business.​streetAddressstring

The address of the business, this is the address that will be shown to the public.

business.​citystring

The city of the business, this is the city that will be shown to the public.

business.​postalCodestring

The postal code of the business, this is the postal code that will be shown to the public.

business.​coordsLatitudenumber

The latitude of the business, this is the latitude that will be shown to the public.

business.​coordsLongitudenumber

The longitude of the business, this is the longitude that will be shown to the public.

business.​businessTypeobject

The business type of the business, this is the business type that will be shown to the public.

business.​isActivebooleanrequired

The status of the business, this is the status that will be shown to the public.

business.​canMintTokenbooleanrequired

The ability to mint token for the business, this is the ability that will be shown to the public.

business.​canChargeTokenbooleanrequired

The ability to charge token for the business, this is the ability that will be shown to the public.

business.​canManageUsersbooleanrequired

The ability to manage users for the business, this is the ability that will be shown to the public.

business.​canReceiveDonationbooleanrequired

The ability to receive donation for the business, this is the ability that will be shown to the public.

donationAccountAddressstring

Donation Account Address

donationTypeobject

Donation Type

createdAtstring(date-time)

create date

updatedAtstring(date-time)

update date

paymentClientSecretobjectrequired

Stripe payment intent client secret

Response
application/json
{ "id": "string", "stripePaymentIntentId": "string", "status": {}, "amount": 0, "currency": "eur", "quantity": 0, "purchaseToken": { "id": "string", "description": "string", "token": { … }, "contractTokenId": {}, "purchaseType": { … }, "isActive": true }, "user": { "id": "string", "email": {}, "firstName": {}, "lastName": {}, "externalId": {}, "accountAddress": "string", "instagramAccountId": {}, "googleAccountName": {} }, "business": { "id": "string", "email": "string", "accountAddress": "string", "businessLegalName": "string", "displayName": "string", "description": "string", "shortDescription": "string", "websiteUrl": "string", "imageUrl": "string", "streetAddress": "string", "city": "string", "postalCode": "string", "coordsLatitude": 0, "coordsLongitude": 0, "businessType": { … }, "isActive": true, "canMintToken": true, "canChargeToken": true, "canManageUsers": true, "canReceiveDonation": true }, "donationAccountAddress": "string", "donationType": { "percentage": 0, "id": 0 }, "createdAt": "2019-08-24T14:15:22Z", "updatedAt": "2019-08-24T14:15:22Z", "paymentClientSecret": {} }

AUTH USER: Get user past Purchases

Request

Get user past Purchases

curl -i -X GET \
  https://docs.pers.ninja/_mock/swagger/purchase/auth \
  -H 'x-project-key: YOUR_API_KEY_HERE'

Responses

Purchase found

Bodyapplication/jsonArray [
idstringrequired

Purchase id

stripePaymentIntentIdstringrequired

Stripe Payment Intent id

statusobjectrequired

Purchase status

amountnumberrequired

Amount to pay in cents

currencystringrequired

Currency

Value"eur"
quantitynumberrequired

Quantity of tokens to purchase

purchaseTokenobjectrequired

Purchase Token

purchaseToken.​idstringrequired

Purchase Token id

purchaseToken.​descriptionstringrequired

Purchase Token description

purchaseToken.​tokenobjectrequired

Token

purchaseToken.​token.​idstringrequired

Id of the token

purchaseToken.​token.​contractAddressstringrequired

Address of the token

purchaseToken.​token.​metadataobject

Metadata of the token, this is optional and can be null in case of Point token

purchaseToken.​token.​abiobjectrequired

this is the abi of the contract, this is the interface of the contract to interact with it

purchaseToken.​token.​chainIdnumberrequired

this is the chain id of the chain where the token is deployed

purchaseToken.​token.​abiUrlobjectrequired

this is the url of the abi of the contract, to be used to fetch the abi of the contract

purchaseToken.​token.​namestring

this is the name of the token contract

purchaseToken.​token.​symbolstring

this is the symbol of the token contract, this is optional and can be null

purchaseToken.​token.​decimalsnumber

this is the decimals of the token. This is optional and only used for ERC20 tokens (Points)

purchaseToken.​token.​isActivebooleanrequired

This can be used to enable or disable the token

purchaseToken.​token.​isGallerybooleanrequired

This can be used to enable or disable the token for gallery

purchaseToken.​token.​typestringrequired

This is the underlying web3 native type of the token contract

Enum"ERC20""ERC721""ERC1155"
purchaseToken.​contractTokenIdobjectrequired

optional contract token id

purchaseToken.​purchaseTypeobjectrequired

Purchase Type

purchaseToken.​purchaseType.​conversionRatenumberrequired

Conversion Rate of the token

purchaseToken.​purchaseType.​currencystringrequired

Currency of the token

Value"eur"
purchaseToken.​purchaseType.​idnumberrequired

Purchase Type id

purchaseToken.​isActivebooleanrequired

Purchase Token isActive

userobjectrequired

User

user.​idstringrequired
user.​emailobject
user.​firstNameobjectrequired

User first name

user.​lastNameobjectrequired

User last name

user.​externalIdobjectrequired

User external id

user.​accountAddressstringrequired

User account address

user.​instagramAccountIdobjectrequired

Instagram account id

user.​googleAccountNameobjectrequired

Google account name

businessobjectrequired

Business

business.​idstringrequired

The id of the business, this is unique and will be used to identify the business.

business.​emailstring

The email of the business, this is unique and will be used to identify the business.

business.​accountAddressstring

The address of the business, this is the address that will be shown to the public.

business.​businessLegalNamestring

The legal name of the business, this is the name that will be used for legal purposes.

business.​displayNamestring

The display name of the business, this is the name that will be shown to the public.

business.​descriptionstring

The description of the business, this is the description that will be shown to the public.

business.​shortDescriptionstring

The short description of the business, this is the description that will be shown to the public.

business.​websiteUrlstring

The website of the business, this is the website that will be shown to the public.

business.​imageUrlstring

The image of the business, this is the image that will be shown to the public.

business.​streetAddressstring

The address of the business, this is the address that will be shown to the public.

business.​citystring

The city of the business, this is the city that will be shown to the public.

business.​postalCodestring

The postal code of the business, this is the postal code that will be shown to the public.

business.​coordsLatitudenumber

The latitude of the business, this is the latitude that will be shown to the public.

business.​coordsLongitudenumber

The longitude of the business, this is the longitude that will be shown to the public.

business.​businessTypeobject

The business type of the business, this is the business type that will be shown to the public.

business.​isActivebooleanrequired

The status of the business, this is the status that will be shown to the public.

business.​canMintTokenbooleanrequired

The ability to mint token for the business, this is the ability that will be shown to the public.

business.​canChargeTokenbooleanrequired

The ability to charge token for the business, this is the ability that will be shown to the public.

business.​canManageUsersbooleanrequired

The ability to manage users for the business, this is the ability that will be shown to the public.

business.​canReceiveDonationbooleanrequired

The ability to receive donation for the business, this is the ability that will be shown to the public.

donationAccountAddressstring

Donation Account Address

donationTypeobject

Donation Type

createdAtstring(date-time)

create date

updatedAtstring(date-time)

update date

]
Response
application/json
[ { "id": "string", "stripePaymentIntentId": "string", "status": {}, "amount": 0, "currency": "eur", "quantity": 0, "purchaseToken": { … }, "user": { … }, "business": { … }, "donationAccountAddress": "string", "donationType": { … }, "createdAt": "2019-08-24T14:15:22Z", "updatedAt": "2019-08-24T14:15:22Z" } ]

Create a new payment intent

Request

Create a new payment intent

Bodyapplication/jsonrequired
amountnumberrequired

Amount in cents

currencystringrequired

Currency

receiptEmailstringrequired

Receipt Email

descriptionstringrequired

Description

curl -i -X POST \
  https://docs.pers.ninja/_mock/swagger/purchase/payment-intent \
  -H 'Content-Type: application/json' \
  -H 'x-project-key: YOUR_API_KEY_HERE' \
  -d '{
    "amount": 0,
    "currency": "string",
    "receiptEmail": "string",
    "description": "string"
  }'

Responses

Payment intent created

Bodyapplication/json
paymentClientSecretobjectrequired

Payment Intent ClientSecrete to complete Stripe payment

paymentIntentIdstringrequired

Payment Intent Id

Response
application/json
{ "paymentClientSecret": {}, "paymentIntentId": "string" }

Update a payment intent

Request

Update a payment intent

Path
paymentIntentIdstringrequired
Bodyapplication/jsonrequired
amountnumberrequired

Amount in cents

currencystringrequired

Currency

receiptEmailstringrequired

Receipt Email

descriptionstringrequired

Description

curl -i -X PUT \
  'https://docs.pers.ninja/_mock/swagger/purchase/payment-intent/{paymentIntentId}' \
  -H 'Content-Type: application/json' \
  -H 'x-project-key: YOUR_API_KEY_HERE' \
  -d '{
    "amount": 0,
    "currency": "string",
    "receiptEmail": "string",
    "description": "string"
  }'

Responses

Payment intent updated

Bodyapplication/json
paymentClientSecretobjectrequired

Payment Intent ClientSecrete to complete Stripe payment

paymentIntentIdstringrequired

Payment Intent Id

Response
application/json
{ "paymentClientSecret": {}, "paymentIntentId": "string" }

Cancel a payment intent

Request

Cancel a payment intent

Path
paymentIntentIdstringrequired
curl -i -X DELETE \
  'https://docs.pers.ninja/_mock/swagger/purchase/payment-intent/{paymentIntentId}' \
  -H 'x-project-key: YOUR_API_KEY_HERE'

Responses

Payment intent cancelled

Bodyapplication/json
paymentClientSecretobjectrequired

Payment Intent ClientSecrete to complete Stripe payment

paymentIntentIdstringrequired

Payment Intent Id

Response
application/json
{ "paymentClientSecret": {}, "paymentIntentId": "string" }

Business

Operations

Description

The Business module encompasses all participants and partners involved in the reward system. This includes the partner community, such as vendors, service providers, artist community, commercial partners, public or private institutions and other entities that contribute to the reward ecosystem. Key features of the Business module include:

  • Partner Management: Onboard and manage partners who participate in the reward system.

  • Collaboration: Facilitate collaboration between the tenant and business partners to create cohesive and engaging reward campaigns.

  • Incentive Structures: Develop and implement incentive structures that motivate partners to actively contribute to the reward system.

  • Performance Tracking: Monitor the performance and engagement levels of business partners within the reward ecosystem.

  • Community Building: Foster a sense of community among business participants to enhance the overall value and appeal of the reward program.

ADMIN: Create a new business type

Request

Create a new business type

Bodyapplication/jsonrequired
namestringrequired

Business type name

descriptionstringrequired

Business type description

codestring

Business type code

iconUrlstring

Business type icon url

curl -i -X POST \
  https://docs.pers.ninja/_mock/swagger/business/admin/type \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "name": "string",
    "description": "string",
    "code": "string",
    "iconUrl": "string"
  }'

Responses

Business type created

Bodyapplication/json
idnumber

Business type id

namestringrequired

Business type name

descriptionstringrequired

Business type description

codestring

Business type code

iconUrlstring

Business type icon url

Response
application/json
{ "id": 0, "name": "string", "description": "string", "code": "string", "iconUrl": "string" }

ADMIN: Update a business type

Request

Update a business type

Bodyapplication/jsonrequired
idnumber

Business type id

namestringrequired

Business type name

descriptionstringrequired

Business type description

codestring

Business type code

iconUrlstring

Business type icon url

curl -i -X PUT \
  https://docs.pers.ninja/_mock/swagger/business/admin/type \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "id": 0,
    "name": "string",
    "description": "string",
    "code": "string",
    "iconUrl": "string"
  }'

Responses

Business type updated

Bodyapplication/json
idnumber

Business type id

namestringrequired

Business type name

descriptionstringrequired

Business type description

codestring

Business type code

iconUrlstring

Business type icon url

Response
application/json
{ "id": 0, "name": "string", "description": "string", "code": "string", "iconUrl": "string" }

ADMIN: Delete a business type

Request

Delete a business type

Path
idstringrequired
curl -i -X DELETE \
  'https://docs.pers.ninja/_mock/swagger/business/admin/type/{id}' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'

Responses

Business type deleted

Bodyapplication/json
boolean
Response
application/json
true

Get all business types

Request

Get all business types

curl -i -X GET \
  https://docs.pers.ninja/_mock/swagger/business/type \
  -H 'x-project-key: YOUR_API_KEY_HERE'

Responses

Business types found

Bodyapplication/json
idnumber

Business type id

namestringrequired

Business type name

descriptionstringrequired

Business type description

codestring

Business type code

iconUrlstring

Business type icon url

Response
application/json
{ "id": 0, "name": "string", "description": "string", "code": "string", "iconUrl": "string" }

BUSINESS: Get business info

Request

Get business info with current token balances

curl -i -X GET \
  https://docs.pers.ninja/_mock/swagger/business/business/me \
  -H 'x-api-key: YOUR_API_KEY_HERE' \
  -H 'x-project-key: YOUR_API_KEY_HERE'

Responses

Business found

Bodyapplication/json
idstringrequired

The id of the business, this is unique and will be used to identify the business.

emailstring

The email of the business, this is unique and will be used to identify the business.

accountAddressstring

The address of the business, this is the address that will be shown to the public.

businessLegalNamestring

The legal name of the business, this is the name that will be used for legal purposes.

displayNamestring

The display name of the business, this is the name that will be shown to the public.

descriptionstring

The description of the business, this is the description that will be shown to the public.

shortDescriptionstring

The short description of the business, this is the description that will be shown to the public.

websiteUrlstring

The website of the business, this is the website that will be shown to the public.

imageUrlstring

The image of the business, this is the image that will be shown to the public.

streetAddressstring

The address of the business, this is the address that will be shown to the public.

citystring

The city of the business, this is the city that will be shown to the public.

postalCodestring

The postal code of the business, this is the postal code that will be shown to the public.

coordsLatitudenumber

The latitude of the business, this is the latitude that will be shown to the public.

coordsLongitudenumber

The longitude of the business, this is the longitude that will be shown to the public.

businessTypeobject

The business type of the business, this is the business type that will be shown to the public.

isActivebooleanrequired

The status of the business, this is the status that will be shown to the public.

canMintTokenbooleanrequired

The ability to mint token for the business, this is the ability that will be shown to the public.

canChargeTokenbooleanrequired

The ability to charge token for the business, this is the ability that will be shown to the public.

canManageUsersbooleanrequired

The ability to manage users for the business, this is the ability that will be shown to the public.

canReceiveDonationbooleanrequired

The ability to receive donation for the business, this is the ability that will be shown to the public.

tokenBalancesArray of objects(TokenBalanceDTO)required

The token balances of the business, this is the token balances that will be shown to the public.

tokenBalances[].​contractAddressstringrequired
tokenBalances[].​chainIdnumberrequired
tokenBalances[].​balancenumberrequired
tokenBalances[].​tokenNamestring
tokenBalances[].​tokenSymbolstring
tokenBalances[].​tokenTypestringrequired
Enum"ERC20""ERC721""ERC1155"
tokenBalances[].​tokenIdstring or nullrequired
tokenBalances[].​metadataUristring or nullrequired
Response
application/json
{ "id": "string", "email": "string", "accountAddress": "string", "businessLegalName": "string", "displayName": "string", "description": "string", "shortDescription": "string", "websiteUrl": "string", "imageUrl": "string", "streetAddress": "string", "city": "string", "postalCode": "string", "coordsLatitude": 0, "coordsLongitude": 0, "businessType": { "id": 0, "name": "string", "description": "string", "code": "string", "iconUrl": "string" }, "isActive": true, "canMintToken": true, "canChargeToken": true, "canManageUsers": true, "canReceiveDonation": true, "tokenBalances": [ { … } ] }

Get all active business info

Request

Get all active business info w/o balances

curl -i -X GET \
  https://docs.pers.ninja/_mock/swagger/business \
  -H 'x-project-key: YOUR_API_KEY_HERE'

Responses

Business found

Bodyapplication/json
idstringrequired

The id of the business, this is unique and will be used to identify the business.

emailstring

The email of the business, this is unique and will be used to identify the business.

accountAddressstring

The address of the business, this is the address that will be shown to the public.

businessLegalNamestring

The legal name of the business, this is the name that will be used for legal purposes.

displayNamestring

The display name of the business, this is the name that will be shown to the public.

descriptionstring

The description of the business, this is the description that will be shown to the public.

shortDescriptionstring

The short description of the business, this is the description that will be shown to the public.

websiteUrlstring

The website of the business, this is the website that will be shown to the public.

imageUrlstring

The image of the business, this is the image that will be shown to the public.

streetAddressstring

The address of the business, this is the address that will be shown to the public.

citystring

The city of the business, this is the city that will be shown to the public.

postalCodestring

The postal code of the business, this is the postal code that will be shown to the public.

coordsLatitudenumber

The latitude of the business, this is the latitude that will be shown to the public.

coordsLongitudenumber

The longitude of the business, this is the longitude that will be shown to the public.

businessTypeobject

The business type of the business, this is the business type that will be shown to the public.

isActivebooleanrequired

The status of the business, this is the status that will be shown to the public.

canMintTokenbooleanrequired

The ability to mint token for the business, this is the ability that will be shown to the public.

canChargeTokenbooleanrequired

The ability to charge token for the business, this is the ability that will be shown to the public.

canManageUsersbooleanrequired

The ability to manage users for the business, this is the ability that will be shown to the public.

canReceiveDonationbooleanrequired

The ability to receive donation for the business, this is the ability that will be shown to the public.

Response
application/json
{ "id": "string", "email": "string", "accountAddress": "string", "businessLegalName": "string", "displayName": "string", "description": "string", "shortDescription": "string", "websiteUrl": "string", "imageUrl": "string", "streetAddress": "string", "city": "string", "postalCode": "string", "coordsLatitude": 0, "coordsLongitude": 0, "businessType": { "id": 0, "name": "string", "description": "string", "code": "string", "iconUrl": "string" }, "isActive": true, "canMintToken": true, "canChargeToken": true, "canManageUsers": true, "canReceiveDonation": true }

ADMIN: Get all business info active or not

Request

Get all business info active or not w/o balances

Query
activestring

Filter by active status (optional)

sanitizestring

Sanitize user models: soft checks for current wallet address, hard overwrites wallet in case of update (use with caution)

curl -i -X GET \
  'https://docs.pers.ninja/_mock/swagger/business/admin?active=string&sanitize=string' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'

Responses

Business found

Bodyapplication/json
idstringrequired

The id of the business, this is unique and will be used to identify the business.

emailstring

The email of the business, this is unique and will be used to identify the business.

accountAddressstring

The address of the business, this is the address that will be shown to the public.

businessLegalNamestring

The legal name of the business, this is the name that will be used for legal purposes.

displayNamestring

The display name of the business, this is the name that will be shown to the public.

descriptionstring

The description of the business, this is the description that will be shown to the public.

shortDescriptionstring

The short description of the business, this is the description that will be shown to the public.

websiteUrlstring

The website of the business, this is the website that will be shown to the public.

imageUrlstring

The image of the business, this is the image that will be shown to the public.

streetAddressstring

The address of the business, this is the address that will be shown to the public.

citystring

The city of the business, this is the city that will be shown to the public.

postalCodestring

The postal code of the business, this is the postal code that will be shown to the public.

coordsLatitudenumber

The latitude of the business, this is the latitude that will be shown to the public.

coordsLongitudenumber

The longitude of the business, this is the longitude that will be shown to the public.

businessTypeobject

The business type of the business, this is the business type that will be shown to the public.

isActivebooleanrequired

The status of the business, this is the status that will be shown to the public.

canMintTokenbooleanrequired

The ability to mint token for the business, this is the ability that will be shown to the public.

canChargeTokenbooleanrequired

The ability to charge token for the business, this is the ability that will be shown to the public.

canManageUsersbooleanrequired

The ability to manage users for the business, this is the ability that will be shown to the public.

canReceiveDonationbooleanrequired

The ability to receive donation for the business, this is the ability that will be shown to the public.

Response
application/json
{ "id": "string", "email": "string", "accountAddress": "string", "businessLegalName": "string", "displayName": "string", "description": "string", "shortDescription": "string", "websiteUrl": "string", "imageUrl": "string", "streetAddress": "string", "city": "string", "postalCode": "string", "coordsLatitude": 0, "coordsLongitude": 0, "businessType": { "id": 0, "name": "string", "description": "string", "code": "string", "iconUrl": "string" }, "isActive": true, "canMintToken": true, "canChargeToken": true, "canManageUsers": true, "canReceiveDonation": true }

ADMIN: Create a new business account

Request

Create a new business account, will be inactive until activated by admin

Bodyapplication/jsonrequired
displayNamestringrequired

The display name of the business, this is the name that will be shown to the public.

curl -i -X POST \
  https://docs.pers.ninja/_mock/swagger/business/admin \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "displayName": "string"
  }'

Responses

Business created

Bodyapplication/json
idstringrequired

The id of the business, this is unique and will be used to identify the business.

emailstring

The email of the business, this is unique and will be used to identify the business.

accountAddressstring

The address of the business, this is the address that will be shown to the public.

businessLegalNamestring

The legal name of the business, this is the name that will be used for legal purposes.

displayNamestring

The display name of the business, this is the name that will be shown to the public.

descriptionstring

The description of the business, this is the description that will be shown to the public.

shortDescriptionstring

The short description of the business, this is the description that will be shown to the public.

websiteUrlstring

The website of the business, this is the website that will be shown to the public.

imageUrlstring

The image of the business, this is the image that will be shown to the public.

streetAddressstring

The address of the business, this is the address that will be shown to the public.

citystring

The city of the business, this is the city that will be shown to the public.

postalCodestring

The postal code of the business, this is the postal code that will be shown to the public.

coordsLatitudenumber

The latitude of the business, this is the latitude that will be shown to the public.

coordsLongitudenumber

The longitude of the business, this is the longitude that will be shown to the public.

businessTypeobject

The business type of the business, this is the business type that will be shown to the public.

isActivebooleanrequired

The status of the business, this is the status that will be shown to the public.

canMintTokenbooleanrequired

The ability to mint token for the business, this is the ability that will be shown to the public.

canChargeTokenbooleanrequired

The ability to charge token for the business, this is the ability that will be shown to the public.

canManageUsersbooleanrequired

The ability to manage users for the business, this is the ability that will be shown to the public.

canReceiveDonationbooleanrequired

The ability to receive donation for the business, this is the ability that will be shown to the public.

apiPrivateKeystringrequired

The api private key of the business, this is the api private key that will be used to identify the business with the api.

Response
application/json
{ "id": "string", "email": "string", "accountAddress": "string", "businessLegalName": "string", "displayName": "string", "description": "string", "shortDescription": "string", "websiteUrl": "string", "imageUrl": "string", "streetAddress": "string", "city": "string", "postalCode": "string", "coordsLatitude": 0, "coordsLongitude": 0, "businessType": { "id": 0, "name": "string", "description": "string", "code": "string", "iconUrl": "string" }, "isActive": true, "canMintToken": true, "canChargeToken": true, "canManageUsers": true, "canReceiveDonation": true, "apiPrivateKey": "string" }

Get business info

Request

Get business info w/o balances

Path
accountAddressstringrequired
curl -i -X GET \
  'https://docs.pers.ninja/_mock/swagger/business/account/{accountAddress}' \
  -H 'x-project-key: YOUR_API_KEY_HERE'

Responses

Business found

Bodyapplication/json
idstringrequired

The id of the business, this is unique and will be used to identify the business.

emailstring

The email of the business, this is unique and will be used to identify the business.

accountAddressstring

The address of the business, this is the address that will be shown to the public.

businessLegalNamestring

The legal name of the business, this is the name that will be used for legal purposes.

displayNamestring

The display name of the business, this is the name that will be shown to the public.

descriptionstring

The description of the business, this is the description that will be shown to the public.

shortDescriptionstring

The short description of the business, this is the description that will be shown to the public.

websiteUrlstring

The website of the business, this is the website that will be shown to the public.

imageUrlstring

The image of the business, this is the image that will be shown to the public.

streetAddressstring

The address of the business, this is the address that will be shown to the public.

citystring

The city of the business, this is the city that will be shown to the public.

postalCodestring

The postal code of the business, this is the postal code that will be shown to the public.

coordsLatitudenumber

The latitude of the business, this is the latitude that will be shown to the public.

coordsLongitudenumber

The longitude of the business, this is the longitude that will be shown to the public.

businessTypeobject

The business type of the business, this is the business type that will be shown to the public.

isActivebooleanrequired

The status of the business, this is the status that will be shown to the public.

canMintTokenbooleanrequired

The ability to mint token for the business, this is the ability that will be shown to the public.

canChargeTokenbooleanrequired

The ability to charge token for the business, this is the ability that will be shown to the public.

canManageUsersbooleanrequired

The ability to manage users for the business, this is the ability that will be shown to the public.

canReceiveDonationbooleanrequired

The ability to receive donation for the business, this is the ability that will be shown to the public.

Response
application/json
{ "id": "string", "email": "string", "accountAddress": "string", "businessLegalName": "string", "displayName": "string", "description": "string", "shortDescription": "string", "websiteUrl": "string", "imageUrl": "string", "streetAddress": "string", "city": "string", "postalCode": "string", "coordsLatitude": 0, "coordsLongitude": 0, "businessType": { "id": 0, "name": "string", "description": "string", "code": "string", "iconUrl": "string" }, "isActive": true, "canMintToken": true, "canChargeToken": true, "canManageUsers": true, "canReceiveDonation": true }

Get business info

Request

Get business info w/o balances

Path
idstringrequired
curl -i -X GET \
  'https://docs.pers.ninja/_mock/swagger/business/{id}' \
  -H 'x-project-key: YOUR_API_KEY_HERE'

Responses

Business found

Bodyapplication/json
idstringrequired

The id of the business, this is unique and will be used to identify the business.

emailstring

The email of the business, this is unique and will be used to identify the business.

accountAddressstring

The address of the business, this is the address that will be shown to the public.

businessLegalNamestring

The legal name of the business, this is the name that will be used for legal purposes.

displayNamestring

The display name of the business, this is the name that will be shown to the public.

descriptionstring

The description of the business, this is the description that will be shown to the public.

shortDescriptionstring

The short description of the business, this is the description that will be shown to the public.

websiteUrlstring

The website of the business, this is the website that will be shown to the public.

imageUrlstring

The image of the business, this is the image that will be shown to the public.

streetAddressstring

The address of the business, this is the address that will be shown to the public.

citystring

The city of the business, this is the city that will be shown to the public.

postalCodestring

The postal code of the business, this is the postal code that will be shown to the public.

coordsLatitudenumber

The latitude of the business, this is the latitude that will be shown to the public.

coordsLongitudenumber

The longitude of the business, this is the longitude that will be shown to the public.

businessTypeobject

The business type of the business, this is the business type that will be shown to the public.

isActivebooleanrequired

The status of the business, this is the status that will be shown to the public.

canMintTokenbooleanrequired

The ability to mint token for the business, this is the ability that will be shown to the public.

canChargeTokenbooleanrequired

The ability to charge token for the business, this is the ability that will be shown to the public.

canManageUsersbooleanrequired

The ability to manage users for the business, this is the ability that will be shown to the public.

canReceiveDonationbooleanrequired

The ability to receive donation for the business, this is the ability that will be shown to the public.

Response
application/json
{ "id": "string", "email": "string", "accountAddress": "string", "businessLegalName": "string", "displayName": "string", "description": "string", "shortDescription": "string", "websiteUrl": "string", "imageUrl": "string", "streetAddress": "string", "city": "string", "postalCode": "string", "coordsLatitude": 0, "coordsLongitude": 0, "businessType": { "id": 0, "name": "string", "description": "string", "code": "string", "iconUrl": "string" }, "isActive": true, "canMintToken": true, "canChargeToken": true, "canManageUsers": true, "canReceiveDonation": true }

Retrieve a new api key

Request

Retrieve a new api key and revoke previous

Path
idstringrequired
curl -i -X PUT \
  'https://docs.pers.ninja/_mock/swagger/business/admin/{id}/api-key' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'

Responses

Business found

Bodyapplication/json
string
Response
application/json
"string"

ADMIN: Update a business account

Request

Update a business account

Path
idstringrequired
Bodyapplication/jsonrequired
emailstring

The email of the business, this is unique and will be used to identify the business.

businessLegalNamestring

The legal name of the business, this is the name that will be used for legal purposes.

displayNamestring

The display name of the business, this is the name that will be shown to the public.

descriptionstring

The description of the business, this is the description that will be shown to the public.

shortDescriptionstring

The short description of the business, this is the description that will be shown to the public.

websiteUrlstring

The website of the business, this is the website that will be shown to the public.

imageUrlstring

The image of the business, this is the image that will be shown to the public.

streetAddressstring

The address of the business, this is the address that will be shown to the public.

citystring

The city of the business, this is the city that will be shown to the public.

postalCodestring

The postal code of the business, this is the postal code that will be shown to the public.

coordsLatitudenumber

The latitude of the business, this is the latitude that will be shown to the public.

coordsLongitudenumber

The longitude of the business, this is the longitude that will be shown to the public

businessTypeIdnumber

The business type of the business, this is the business type that will be shown to the public.

curl -i -X PUT \
  'https://docs.pers.ninja/_mock/swagger/business/admin/{id}' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "email": "string",
    "businessLegalName": "string",
    "displayName": "string",
    "description": "string",
    "shortDescription": "string",
    "websiteUrl": "string",
    "imageUrl": "string",
    "streetAddress": "string",
    "city": "string",
    "postalCode": "string",
    "coordsLatitude": 0,
    "coordsLongitude": 0,
    "businessTypeId": 0
  }'

Responses

Business created

Bodyapplication/json
idstringrequired

The id of the business, this is unique and will be used to identify the business.

emailstring

The email of the business, this is unique and will be used to identify the business.

accountAddressstring

The address of the business, this is the address that will be shown to the public.

businessLegalNamestring

The legal name of the business, this is the name that will be used for legal purposes.

displayNamestring

The display name of the business, this is the name that will be shown to the public.

descriptionstring

The description of the business, this is the description that will be shown to the public.

shortDescriptionstring

The short description of the business, this is the description that will be shown to the public.

websiteUrlstring

The website of the business, this is the website that will be shown to the public.

imageUrlstring

The image of the business, this is the image that will be shown to the public.

streetAddressstring

The address of the business, this is the address that will be shown to the public.

citystring

The city of the business, this is the city that will be shown to the public.

postalCodestring

The postal code of the business, this is the postal code that will be shown to the public.

coordsLatitudenumber

The latitude of the business, this is the latitude that will be shown to the public.

coordsLongitudenumber

The longitude of the business, this is the longitude that will be shown to the public.

businessTypeobject

The business type of the business, this is the business type that will be shown to the public.

isActivebooleanrequired

The status of the business, this is the status that will be shown to the public.

canMintTokenbooleanrequired

The ability to mint token for the business, this is the ability that will be shown to the public.

canChargeTokenbooleanrequired

The ability to charge token for the business, this is the ability that will be shown to the public.

canManageUsersbooleanrequired

The ability to manage users for the business, this is the ability that will be shown to the public.

canReceiveDonationbooleanrequired

The ability to receive donation for the business, this is the ability that will be shown to the public.

tokenBalancesArray of objects(TokenBalanceDTO)required

The token balances of the business, this is the token balances that will be shown to the public.

tokenBalances[].​contractAddressstringrequired
tokenBalances[].​chainIdnumberrequired
tokenBalances[].​balancenumberrequired
tokenBalances[].​tokenNamestring
tokenBalances[].​tokenSymbolstring
tokenBalances[].​tokenTypestringrequired
Enum"ERC20""ERC721""ERC1155"
tokenBalances[].​tokenIdstring or nullrequired
tokenBalances[].​metadataUristring or nullrequired
Response
application/json
{ "id": "string", "email": "string", "accountAddress": "string", "businessLegalName": "string", "displayName": "string", "description": "string", "shortDescription": "string", "websiteUrl": "string", "imageUrl": "string", "streetAddress": "string", "city": "string", "postalCode": "string", "coordsLatitude": 0, "coordsLongitude": 0, "businessType": { "id": 0, "name": "string", "description": "string", "code": "string", "iconUrl": "string" }, "isActive": true, "canMintToken": true, "canChargeToken": true, "canManageUsers": true, "canReceiveDonation": true, "tokenBalances": [ { … } ] }

ADMIN: Toggle business account active

Request

Toggle business account active

Path
idstringrequired
Bodyapplication/jsonrequired
isActivebooleanrequired
canMintTokenboolean
canChargeTokenboolean
canManageUsersboolean
canReceiveDonationboolean
curl -i -X PUT \
  'https://docs.pers.ninja/_mock/swagger/business/admin/activate/{id}' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "isActive": true,
    "canMintToken": true,
    "canChargeToken": true,
    "canManageUsers": true,
    "canReceiveDonation": true
  }'

Responses

Business account permissions updated

Bodyapplication/json
idstringrequired

The id of the business, this is unique and will be used to identify the business.

emailstring

The email of the business, this is unique and will be used to identify the business.

accountAddressstring

The address of the business, this is the address that will be shown to the public.

businessLegalNamestring

The legal name of the business, this is the name that will be used for legal purposes.

displayNamestring

The display name of the business, this is the name that will be shown to the public.

descriptionstring

The description of the business, this is the description that will be shown to the public.

shortDescriptionstring

The short description of the business, this is the description that will be shown to the public.

websiteUrlstring

The website of the business, this is the website that will be shown to the public.

imageUrlstring

The image of the business, this is the image that will be shown to the public.

streetAddressstring

The address of the business, this is the address that will be shown to the public.

citystring

The city of the business, this is the city that will be shown to the public.

postalCodestring

The postal code of the business, this is the postal code that will be shown to the public.

coordsLatitudenumber

The latitude of the business, this is the latitude that will be shown to the public.

coordsLongitudenumber

The longitude of the business, this is the longitude that will be shown to the public.

businessTypeobject

The business type of the business, this is the business type that will be shown to the public.

isActivebooleanrequired

The status of the business, this is the status that will be shown to the public.

canMintTokenbooleanrequired

The ability to mint token for the business, this is the ability that will be shown to the public.

canChargeTokenbooleanrequired

The ability to charge token for the business, this is the ability that will be shown to the public.

canManageUsersbooleanrequired

The ability to manage users for the business, this is the ability that will be shown to the public.

canReceiveDonationbooleanrequired

The ability to receive donation for the business, this is the ability that will be shown to the public.

Response
application/json
{ "id": "string", "email": "string", "accountAddress": "string", "businessLegalName": "string", "displayName": "string", "description": "string", "shortDescription": "string", "websiteUrl": "string", "imageUrl": "string", "streetAddress": "string", "city": "string", "postalCode": "string", "coordsLatitude": 0, "coordsLongitude": 0, "businessType": { "id": 0, "name": "string", "description": "string", "code": "string", "iconUrl": "string" }, "isActive": true, "canMintToken": true, "canChargeToken": true, "canManageUsers": true, "canReceiveDonation": true }

Transaction

Operations

Description

The Transaction module in SaaS PERS manages all transactional operations related to credits and tokens within the reward system. It ensures a smooth and secure flow of credits and tokens between users and the system.
API Endpoints

  • Mint credits: Mint credits to a user's account.
  • Transfer credits: Transfer credits from one user account to another.
  • Burn token: Remove tokens from a user's account.
  • Mint token: Add new tokens to a user's account.
  • Authorize transaction: Ensure the user has the necessary permissions and balance for a transaction.
  • Get balance: Retrieve the balance of a user's account, including both credits and tokens. Key Transaction Features
  • Secure Transactions: Ensures all transactions are secure and authorized, protecting user data and maintaining the integrity of the reward system.
  • Comprehensive Management: Supports a variety of transactional operations, providing flexibility in how credits and tokens are managed within the system.
  • Real-Time Processing: All transactions are processed in real-time, ensuring that user balances are updated instantly.
  • Integration Capabilities: Easily integrates with other modules and external systems to provide a seamless transactional experience.
    The Transaction module is essential for the efficient and secure management of credits and tokens, enhancing user engagement and satisfaction within the SaaS PERS system.

BUSINESS: Mint credits

Request

Mint credits to account from active minter account

Bodyapplication/jsonrequired
userEmailstring
userIdentifierstring

User identifier, this is the user´s main reference to identify the user

Enum"id""email""instagramAccountId""externalId"
amountnumberrequired
curl -i -X POST \
  https://docs.pers.ninja/_mock/swagger/transaction/business/mint/credits \
  -H 'Content-Type: application/json' \
  -H 'x-api-key: YOUR_API_KEY_HERE' \
  -H 'x-project-key: YOUR_API_KEY_HERE' \
  -d '{
    "userEmail": "string",
    "userIdentifier": "id",
    "amount": 0
  }'

Responses

Transaction complete

Bodyapplication/json
amountnumberrequired

Transaction amount

idstringrequired

Transaction id

tokenAddressstringrequired

Transaction token address

tokenTypestringrequired

Transaction token type

Enum"ERC20""ERC721""ERC1155"
senderAddressstringrequired

Sender address

recipientAddressobjectrequired

Recipient address

transactionHashobjectrequired

Transaction hash

typestringrequired

Transaction type

Enum"MINT""TRANSFER""BURN""CLAIM"
triggerProcessTypestringrequired

Trigger process type

Enum"PURCHASE""SPEND""EARN""CAMPAIGN_USER_CLAIM""CAMPAIGN_SYSTEM_CLAIM""CAMPAIGN_BUSINESS_CLAIM""REDEMPTION_SPEND""REDEMPTION_RECEIVE""MIGRATION""ADMIN_TRIGGERED"
triggerProcessIdobjectrequired

Trigger process id, this is the id of the entity that triggered the transaction if applicable (e.g. CampaignUserClaim id)

statusstringrequired

Transaction status

Enum"created""processing""broadcasted""succeeded""failed"
createdAtobjectrequired

create date

updatedAtobjectrequired

update date

Response
application/json
{ "amount": 0, "id": "string", "tokenAddress": "string", "tokenType": "ERC20", "senderAddress": "string", "recipientAddress": {}, "transactionHash": {}, "type": "MINT", "triggerProcessType": "PURCHASE", "triggerProcessId": {}, "status": "created", "createdAt": {}, "updatedAt": {} }

ADMIN: Mint credits to user

Request

Mint credits to user account from tenant

Bodyapplication/jsonrequired
userEmailstring
userIdentifierstring

User identifier, this is the user´s main reference to identify the user

Enum"id""email""instagramAccountId""externalId"
amountnumberrequired
curl -i -X POST \
  https://docs.pers.ninja/_mock/swagger/transaction/admin/mint/credits \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "userEmail": "string",
    "userIdentifier": "id",
    "amount": 0
  }'

Responses

Transaction complete

Bodyapplication/json
amountnumberrequired

Transaction amount

idstringrequired

Transaction id

tokenAddressstringrequired

Transaction token address

tokenTypestringrequired

Transaction token type

Enum"ERC20""ERC721""ERC1155"
senderAddressstringrequired

Sender address

recipientAddressobjectrequired

Recipient address

transactionHashobjectrequired

Transaction hash

typestringrequired

Transaction type

Enum"MINT""TRANSFER""BURN""CLAIM"
triggerProcessTypestringrequired

Trigger process type

Enum"PURCHASE""SPEND""EARN""CAMPAIGN_USER_CLAIM""CAMPAIGN_SYSTEM_CLAIM""CAMPAIGN_BUSINESS_CLAIM""REDEMPTION_SPEND""REDEMPTION_RECEIVE""MIGRATION""ADMIN_TRIGGERED"
triggerProcessIdobjectrequired

Trigger process id, this is the id of the entity that triggered the transaction if applicable (e.g. CampaignUserClaim id)

statusstringrequired

Transaction status

Enum"created""processing""broadcasted""succeeded""failed"
createdAtobjectrequired

create date

updatedAtobjectrequired

update date

Response
application/json
{ "amount": 0, "id": "string", "tokenAddress": "string", "tokenType": "ERC20", "senderAddress": "string", "recipientAddress": {}, "transactionHash": {}, "type": "MINT", "triggerProcessType": "PURCHASE", "triggerProcessId": {}, "status": "created", "createdAt": {}, "updatedAt": {} }

BUSINESS: Transfer credits

Request

Transfer credits from user account to business account

Bodyapplication/jsonrequired
userEmailstring
userIdentifierstring

User identifier, this is the user´s main reference to identify the user

Enum"id""email""instagramAccountId""externalId"
amountnumberrequired
curl -i -X POST \
  https://docs.pers.ninja/_mock/swagger/transaction/business/transfer/credits \
  -H 'Content-Type: application/json' \
  -H 'x-api-key: YOUR_API_KEY_HERE' \
  -H 'x-project-key: YOUR_API_KEY_HERE' \
  -d '{
    "userEmail": "string",
    "userIdentifier": "id",
    "amount": 0
  }'

Responses

Transaction complete

Bodyapplication/json
amountnumberrequired

Transaction amount

idstringrequired

Transaction id

tokenAddressstringrequired

Transaction token address

tokenTypestringrequired

Transaction token type

Enum"ERC20""ERC721""ERC1155"
senderAddressstringrequired

Sender address

recipientAddressobjectrequired

Recipient address

transactionHashobjectrequired

Transaction hash

typestringrequired

Transaction type

Enum"MINT""TRANSFER""BURN""CLAIM"
triggerProcessTypestringrequired

Trigger process type

Enum"PURCHASE""SPEND""EARN""CAMPAIGN_USER_CLAIM""CAMPAIGN_SYSTEM_CLAIM""CAMPAIGN_BUSINESS_CLAIM""REDEMPTION_SPEND""REDEMPTION_RECEIVE""MIGRATION""ADMIN_TRIGGERED"
triggerProcessIdobjectrequired

Trigger process id, this is the id of the entity that triggered the transaction if applicable (e.g. CampaignUserClaim id)

statusstringrequired

Transaction status

Enum"created""processing""broadcasted""succeeded""failed"
createdAtobjectrequired

create date

updatedAtobjectrequired

update date

Response
application/json
{ "amount": 0, "id": "string", "tokenAddress": "string", "tokenType": "ERC20", "senderAddress": "string", "recipientAddress": {}, "transactionHash": {}, "type": "MINT", "triggerProcessType": "PURCHASE", "triggerProcessId": {}, "status": "created", "createdAt": {}, "updatedAt": {} }

ADMIN: Transfer credits from user

Request

Transfer credits from user account to tenant account

Bodyapplication/jsonrequired
userEmailstring
userIdentifierstring

User identifier, this is the user´s main reference to identify the user

Enum"id""email""instagramAccountId""externalId"
amountnumberrequired
curl -i -X POST \
  https://docs.pers.ninja/_mock/swagger/transaction/admin/transfer/credits \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "userEmail": "string",
    "userIdentifier": "id",
    "amount": 0
  }'

Responses

Transaction complete

Bodyapplication/json
amountnumberrequired

Transaction amount

idstringrequired

Transaction id

tokenAddressstringrequired

Transaction token address

tokenTypestringrequired

Transaction token type

Enum"ERC20""ERC721""ERC1155"
senderAddressstringrequired

Sender address

recipientAddressobjectrequired

Recipient address

transactionHashobjectrequired

Transaction hash

typestringrequired

Transaction type

Enum"MINT""TRANSFER""BURN""CLAIM"
triggerProcessTypestringrequired

Trigger process type

Enum"PURCHASE""SPEND""EARN""CAMPAIGN_USER_CLAIM""CAMPAIGN_SYSTEM_CLAIM""CAMPAIGN_BUSINESS_CLAIM""REDEMPTION_SPEND""REDEMPTION_RECEIVE""MIGRATION""ADMIN_TRIGGERED"
triggerProcessIdobjectrequired

Trigger process id, this is the id of the entity that triggered the transaction if applicable (e.g. CampaignUserClaim id)

statusstringrequired

Transaction status

Enum"created""processing""broadcasted""succeeded""failed"
createdAtobjectrequired

create date

updatedAtobjectrequired

update date

Response
application/json
{ "amount": 0, "id": "string", "tokenAddress": "string", "tokenType": "ERC20", "senderAddress": "string", "recipientAddress": {}, "transactionHash": {}, "type": "MINT", "triggerProcessType": "PURCHASE", "triggerProcessId": {}, "status": "created", "createdAt": {}, "updatedAt": {} }

AUTH USER: Transfer credits

Request

Transfer credits from account to business account

Bodyapplication/jsonrequired
businessIdstring

Business id

tokenAddressstring

Token address, this is optional, if not provided, the default credit token will be used

tokenMetadataIncrementalIdnumber

Token metadata incremental id, this is optional, if not provided, will be set to null

chainIdnumberrequired

chain Id

amountnumberrequired
curl -i -X POST \
  https://docs.pers.ninja/_mock/swagger/transaction/auth/transfer/credits \
  -H 'Content-Type: application/json' \
  -H 'x-project-key: YOUR_API_KEY_HERE' \
  -d '{
    "businessId": "string",
    "tokenAddress": "string",
    "tokenMetadataIncrementalId": 0,
    "chainId": 0,
    "amount": 0
  }'

Responses

Transaction complete

Bodyapplication/json
amountnumberrequired

Transaction amount

idstringrequired

Transaction id

tokenAddressstringrequired

Transaction token address

tokenTypestringrequired

Transaction token type

Enum"ERC20""ERC721""ERC1155"
senderAddressstringrequired

Sender address

recipientAddressobjectrequired

Recipient address

transactionHashobjectrequired

Transaction hash

typestringrequired

Transaction type

Enum"MINT""TRANSFER""BURN""CLAIM"
triggerProcessTypestringrequired

Trigger process type

Enum"PURCHASE""SPEND""EARN""CAMPAIGN_USER_CLAIM""CAMPAIGN_SYSTEM_CLAIM""CAMPAIGN_BUSINESS_CLAIM""REDEMPTION_SPEND""REDEMPTION_RECEIVE""MIGRATION""ADMIN_TRIGGERED"
triggerProcessIdobjectrequired

Trigger process id, this is the id of the entity that triggered the transaction if applicable (e.g. CampaignUserClaim id)

statusstringrequired

Transaction status

Enum"created""processing""broadcasted""succeeded""failed"
createdAtobjectrequired

create date

updatedAtobjectrequired

update date

Response
application/json
{ "amount": 0, "id": "string", "tokenAddress": "string", "tokenType": "ERC20", "senderAddress": "string", "recipientAddress": {}, "transactionHash": {}, "type": "MINT", "triggerProcessType": "PURCHASE", "triggerProcessId": {}, "status": "created", "createdAt": {}, "updatedAt": {} }

AUTH USER: Transfer token

Request

Transfer token from account to business account

Bodyapplication/jsonrequired
businessIdstring

Business id

tokenAddressstring

Token address, this is optional, if not provided, the default credit token will be used

tokenMetadataIncrementalIdnumber

Token metadata incremental id, this is optional, if not provided, will be set to null

chainIdnumberrequired

chain Id

amountnumberrequired
curl -i -X POST \
  https://docs.pers.ninja/_mock/swagger/transaction/auth/transfer/token \
  -H 'Content-Type: application/json' \
  -H 'x-project-key: YOUR_API_KEY_HERE' \
  -d '{
    "businessId": "string",
    "tokenAddress": "string",
    "tokenMetadataIncrementalId": 0,
    "chainId": 0,
    "amount": 0
  }'

Responses

Transaction complete

Bodyapplication/json
amountnumberrequired

Transaction amount

idstringrequired

Transaction id

tokenAddressstringrequired

Transaction token address

tokenTypestringrequired

Transaction token type

Enum"ERC20""ERC721""ERC1155"
senderAddressstringrequired

Sender address

recipientAddressobjectrequired

Recipient address

transactionHashobjectrequired

Transaction hash

typestringrequired

Transaction type

Enum"MINT""TRANSFER""BURN""CLAIM"
triggerProcessTypestringrequired

Trigger process type

Enum"PURCHASE""SPEND""EARN""CAMPAIGN_USER_CLAIM""CAMPAIGN_SYSTEM_CLAIM""CAMPAIGN_BUSINESS_CLAIM""REDEMPTION_SPEND""REDEMPTION_RECEIVE""MIGRATION""ADMIN_TRIGGERED"
triggerProcessIdobjectrequired

Trigger process id, this is the id of the entity that triggered the transaction if applicable (e.g. CampaignUserClaim id)

statusstringrequired

Transaction status

Enum"created""processing""broadcasted""succeeded""failed"
createdAtobjectrequired

create date

updatedAtobjectrequired

update date

Response
application/json
{ "amount": 0, "id": "string", "tokenAddress": "string", "tokenType": "ERC20", "senderAddress": "string", "recipientAddress": {}, "transactionHash": {}, "type": "MINT", "triggerProcessType": "PURCHASE", "triggerProcessId": {}, "status": "created", "createdAt": {}, "updatedAt": {} }

AUTH USER: Burn token

Request

Burn token from account

Bodyapplication/jsonrequired
tokenAddressstringrequired

Token address

chainIdnumberrequired

chain Id

tokenMetadataIncrementalIdstringrequired

Token id

amountnumberrequired
curl -i -X POST \
  https://docs.pers.ninja/_mock/swagger/transaction/auth/burn/token \
  -H 'Content-Type: application/json' \
  -H 'x-project-key: YOUR_API_KEY_HERE' \
  -d '{
    "tokenAddress": "string",
    "chainId": 0,
    "tokenMetadataIncrementalId": "string",
    "amount": 0
  }'

Responses

Transaction complete

Bodyapplication/json
amountnumberrequired

Transaction amount

idstringrequired

Transaction id

tokenAddressstringrequired

Transaction token address

tokenTypestringrequired

Transaction token type

Enum"ERC20""ERC721""ERC1155"
senderAddressstringrequired

Sender address

recipientAddressobjectrequired

Recipient address

transactionHashobjectrequired

Transaction hash

typestringrequired

Transaction type

Enum"MINT""TRANSFER""BURN""CLAIM"
triggerProcessTypestringrequired

Trigger process type

Enum"PURCHASE""SPEND""EARN""CAMPAIGN_USER_CLAIM""CAMPAIGN_SYSTEM_CLAIM""CAMPAIGN_BUSINESS_CLAIM""REDEMPTION_SPEND""REDEMPTION_RECEIVE""MIGRATION""ADMIN_TRIGGERED"
triggerProcessIdobjectrequired

Trigger process id, this is the id of the entity that triggered the transaction if applicable (e.g. CampaignUserClaim id)

statusstringrequired

Transaction status

Enum"created""processing""broadcasted""succeeded""failed"
createdAtobjectrequired

create date

updatedAtobjectrequired

update date

Response
application/json
{ "amount": 0, "id": "string", "tokenAddress": "string", "tokenType": "ERC20", "senderAddress": "string", "recipientAddress": {}, "transactionHash": {}, "type": "MINT", "triggerProcessType": "PURCHASE", "triggerProcessId": {}, "status": "created", "createdAt": {}, "updatedAt": {} }

ADMIN: Mint token

Request

Mint token to account

Bodyapplication/jsonrequired
amountnumberrequired

Transaction amount

tokenAddressstringrequired

Transaction token address

tokenMetadataIncrementalIdobject

Transaction token metadata incremental id

chainIdnumberrequired

chain Id

senderAddressstring

Sender address

recipientAddressstring

Recipient address

curl -i -X POST \
  https://docs.pers.ninja/_mock/swagger/transaction/admin/mint/token \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "amount": 0,
    "tokenAddress": "string",
    "tokenMetadataIncrementalId": {},
    "chainId": 0,
    "senderAddress": "string",
    "recipientAddress": "string"
  }'

Responses

Transaction complete

Bodyapplication/json
amountnumberrequired

Transaction amount

idstringrequired

Transaction id

tokenAddressstringrequired

Transaction token address

tokenTypestringrequired

Transaction token type

Enum"ERC20""ERC721""ERC1155"
senderAddressstringrequired

Sender address

recipientAddressobjectrequired

Recipient address

transactionHashobjectrequired

Transaction hash

typestringrequired

Transaction type

Enum"MINT""TRANSFER""BURN""CLAIM"
triggerProcessTypestringrequired

Trigger process type

Enum"PURCHASE""SPEND""EARN""CAMPAIGN_USER_CLAIM""CAMPAIGN_SYSTEM_CLAIM""CAMPAIGN_BUSINESS_CLAIM""REDEMPTION_SPEND""REDEMPTION_RECEIVE""MIGRATION""ADMIN_TRIGGERED"
triggerProcessIdobjectrequired

Trigger process id, this is the id of the entity that triggered the transaction if applicable (e.g. CampaignUserClaim id)

statusstringrequired

Transaction status

Enum"created""processing""broadcasted""succeeded""failed"
createdAtobjectrequired

create date

updatedAtobjectrequired

update date

Response
application/json
{ "amount": 0, "id": "string", "tokenAddress": "string", "tokenType": "ERC20", "senderAddress": "string", "recipientAddress": {}, "transactionHash": {}, "type": "MINT", "triggerProcessType": "PURCHASE", "triggerProcessId": {}, "status": "created", "createdAt": {}, "updatedAt": {} }

ADMIN: Mint token

Request

Mint token to account

Bodyapplication/jsonrequired
urlstringrequired
Example: "https://example.com/user-data"
amountnumber

Transaction amount, if not provided, the amount must be included in the file from url

tokenAddressstringrequired

Transaction token address

tokenMetadataIncrementalIdobject

Transaction token metadata incremental id

chainIdnumberrequired

chain Id

senderAddressstring

Sender address

curl -i -X POST \
  https://docs.pers.ninja/_mock/swagger/transaction/admin/mint/token/url \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "url": "https://example.com/user-data",
    "amount": 0,
    "tokenAddress": "string",
    "tokenMetadataIncrementalId": {},
    "chainId": 0,
    "senderAddress": "string"
  }'

Responses

Transactions completed

Bodyapplication/jsonArray [
amountnumberrequired

Transaction amount

idstringrequired

Transaction id

tokenAddressstringrequired

Transaction token address

tokenTypestringrequired

Transaction token type

Enum"ERC20""ERC721""ERC1155"
senderAddressstringrequired

Sender address

recipientAddressobjectrequired

Recipient address

transactionHashobjectrequired

Transaction hash

typestringrequired

Transaction type

Enum"MINT""TRANSFER""BURN""CLAIM"
triggerProcessTypestringrequired

Trigger process type

Enum"PURCHASE""SPEND""EARN""CAMPAIGN_USER_CLAIM""CAMPAIGN_SYSTEM_CLAIM""CAMPAIGN_BUSINESS_CLAIM""REDEMPTION_SPEND""REDEMPTION_RECEIVE""MIGRATION""ADMIN_TRIGGERED"
triggerProcessIdobjectrequired

Trigger process id, this is the id of the entity that triggered the transaction if applicable (e.g. CampaignUserClaim id)

statusstringrequired

Transaction status

Enum"created""processing""broadcasted""succeeded""failed"
createdAtobjectrequired

create date

updatedAtobjectrequired

update date

]
Response
application/json
[ { "amount": 0, "id": "string", "tokenAddress": "string", "tokenType": "ERC20", "senderAddress": "string", "recipientAddress": {}, "transactionHash": {}, "type": "MINT", "triggerProcessType": "PURCHASE", "triggerProcessId": {}, "status": "created", "createdAt": {}, "updatedAt": {} } ]

ADMIN: Burn token

Request

Burn token from account

Bodyapplication/jsonrequired
amountnumberrequired

Transaction amount

tokenAddressstringrequired

Transaction token address

tokenMetadataIncrementalIdobject

Transaction token metadata incremental id

chainIdnumberrequired

chain Id

senderAddressstring

Sender address

recipientAddressstring

Recipient address

curl -i -X POST \
  https://docs.pers.ninja/_mock/swagger/transaction/admin/burn/token \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "amount": 0,
    "tokenAddress": "string",
    "tokenMetadataIncrementalId": {},
    "chainId": 0,
    "senderAddress": "string",
    "recipientAddress": "string"
  }'

Responses

Transaction complete

Bodyapplication/json
amountnumberrequired

Transaction amount

idstringrequired

Transaction id

tokenAddressstringrequired

Transaction token address

tokenTypestringrequired

Transaction token type

Enum"ERC20""ERC721""ERC1155"
senderAddressstringrequired

Sender address

recipientAddressobjectrequired

Recipient address

transactionHashobjectrequired

Transaction hash

typestringrequired

Transaction type

Enum"MINT""TRANSFER""BURN""CLAIM"
triggerProcessTypestringrequired

Trigger process type

Enum"PURCHASE""SPEND""EARN""CAMPAIGN_USER_CLAIM""CAMPAIGN_SYSTEM_CLAIM""CAMPAIGN_BUSINESS_CLAIM""REDEMPTION_SPEND""REDEMPTION_RECEIVE""MIGRATION""ADMIN_TRIGGERED"
triggerProcessIdobjectrequired

Trigger process id, this is the id of the entity that triggered the transaction if applicable (e.g. CampaignUserClaim id)

statusstringrequired

Transaction status

Enum"created""processing""broadcasted""succeeded""failed"
createdAtobjectrequired

create date

updatedAtobjectrequired

update date

Response
application/json
{ "amount": 0, "id": "string", "tokenAddress": "string", "tokenType": "ERC20", "senderAddress": "string", "recipientAddress": {}, "transactionHash": {}, "type": "MINT", "triggerProcessType": "PURCHASE", "triggerProcessId": {}, "status": "created", "createdAt": {}, "updatedAt": {} }

AUTH USER: Get transactions by sender for authentificated user

Request

Get transactions by sender for authentificated user

curl -i -X GET \
  https://docs.pers.ninja/_mock/swagger/transaction/auth/sender \
  -H 'x-project-key: YOUR_API_KEY_HERE'

Responses

Transactions by user as sender

Bodyapplication/jsonArray [
amountnumberrequired

Transaction amount

idstringrequired

Transaction id

tokenAddressstringrequired

Transaction token address

tokenTypestringrequired

Transaction token type

Enum"ERC20""ERC721""ERC1155"
senderAddressstringrequired

Sender address

recipientAddressobjectrequired

Recipient address

transactionHashobjectrequired

Transaction hash

typestringrequired

Transaction type

Enum"MINT""TRANSFER""BURN""CLAIM"
triggerProcessTypestringrequired

Trigger process type

Enum"PURCHASE""SPEND""EARN""CAMPAIGN_USER_CLAIM""CAMPAIGN_SYSTEM_CLAIM""CAMPAIGN_BUSINESS_CLAIM""REDEMPTION_SPEND""REDEMPTION_RECEIVE""MIGRATION""ADMIN_TRIGGERED"
triggerProcessIdobjectrequired

Trigger process id, this is the id of the entity that triggered the transaction if applicable (e.g. CampaignUserClaim id)

statusstringrequired

Transaction status

Enum"created""processing""broadcasted""succeeded""failed"
createdAtobjectrequired

create date

updatedAtobjectrequired

update date

]
Response
application/json
[ { "amount": 0, "id": "string", "tokenAddress": "string", "tokenType": "ERC20", "senderAddress": "string", "recipientAddress": {}, "transactionHash": {}, "type": "MINT", "triggerProcessType": "PURCHASE", "triggerProcessId": {}, "status": "created", "createdAt": {}, "updatedAt": {} } ]

AUTH USER: Get transactions by recipient for authentificated user

Request

Get transactions by recipient for authentificated user

curl -i -X GET \
  https://docs.pers.ninja/_mock/swagger/transaction/auth/recipient \
  -H 'x-project-key: YOUR_API_KEY_HERE'

Responses

Transactions by user as recipeint

Bodyapplication/jsonArray [
amountnumberrequired

Transaction amount

idstringrequired

Transaction id

tokenAddressstringrequired

Transaction token address

tokenTypestringrequired

Transaction token type

Enum"ERC20""ERC721""ERC1155"
senderAddressstringrequired

Sender address

recipientAddressobjectrequired

Recipient address

transactionHashobjectrequired

Transaction hash

typestringrequired

Transaction type

Enum"MINT""TRANSFER""BURN""CLAIM"
triggerProcessTypestringrequired

Trigger process type

Enum"PURCHASE""SPEND""EARN""CAMPAIGN_USER_CLAIM""CAMPAIGN_SYSTEM_CLAIM""CAMPAIGN_BUSINESS_CLAIM""REDEMPTION_SPEND""REDEMPTION_RECEIVE""MIGRATION""ADMIN_TRIGGERED"
triggerProcessIdobjectrequired

Trigger process id, this is the id of the entity that triggered the transaction if applicable (e.g. CampaignUserClaim id)

statusstringrequired

Transaction status

Enum"created""processing""broadcasted""succeeded""failed"
createdAtobjectrequired

create date

updatedAtobjectrequired

update date

]
Response
application/json
[ { "amount": 0, "id": "string", "tokenAddress": "string", "tokenType": "ERC20", "senderAddress": "string", "recipientAddress": {}, "transactionHash": {}, "type": "MINT", "triggerProcessType": "PURCHASE", "triggerProcessId": {}, "status": "created", "createdAt": {}, "updatedAt": {} } ]

ADMIN: Get transactions by sender for authenticated admin

Request

Get transactions by sender for authenticated admin

Bodyapplication/jsonrequired
emailstring

User email

userIdentifierstring

User identifier

Enum"id""email""instagramAccountId""externalId"
accountAddressstring

User account address

businessOrUserIdstring

Business or user id

accountTypestringrequired

Type to retrieve transactions from: user or business

Enum"BUSINESS""USER"
curl -i -X POST \
  https://docs.pers.ninja/_mock/swagger/transaction/admin/sender \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "email": "string",
    "userIdentifier": "id",
    "accountAddress": "string",
    "businessOrUserId": "string",
    "accountType": "BUSINESS"
  }'

Responses

Transactions as sender

Bodyapplication/jsonArray [
amountnumberrequired

Transaction amount

idstringrequired

Transaction id

tokenAddressstringrequired

Transaction token address

tokenTypestringrequired

Transaction token type

Enum"ERC20""ERC721""ERC1155"
senderAddressstringrequired

Sender address

recipientAddressobjectrequired

Recipient address

transactionHashobjectrequired

Transaction hash

typestringrequired

Transaction type

Enum"MINT""TRANSFER""BURN""CLAIM"
triggerProcessTypestringrequired

Trigger process type

Enum"PURCHASE""SPEND""EARN""CAMPAIGN_USER_CLAIM""CAMPAIGN_SYSTEM_CLAIM""CAMPAIGN_BUSINESS_CLAIM""REDEMPTION_SPEND""REDEMPTION_RECEIVE""MIGRATION""ADMIN_TRIGGERED"
triggerProcessIdobjectrequired

Trigger process id, this is the id of the entity that triggered the transaction if applicable (e.g. CampaignUserClaim id)

statusstringrequired

Transaction status

Enum"created""processing""broadcasted""succeeded""failed"
createdAtobjectrequired

create date

updatedAtobjectrequired

update date

]
Response
application/json
[ { "amount": 0, "id": "string", "tokenAddress": "string", "tokenType": "ERC20", "senderAddress": "string", "recipientAddress": {}, "transactionHash": {}, "type": "MINT", "triggerProcessType": "PURCHASE", "triggerProcessId": {}, "status": "created", "createdAt": {}, "updatedAt": {} } ]

Get transactions by recipient for authenticated admin

Request

Get transactions by recipient for authenticated admin

Bodyapplication/jsonrequired
emailstring

User email

userIdentifierstring

User identifier

Enum"id""email""instagramAccountId""externalId"
accountAddressstring

User account address

businessOrUserIdstring

Business or user id

accountTypestringrequired

Type to retrieve transactions from: user or business

Enum"BUSINESS""USER"
curl -i -X POST \
  https://docs.pers.ninja/_mock/swagger/transaction/admin/recipient \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "email": "string",
    "userIdentifier": "id",
    "accountAddress": "string",
    "businessOrUserId": "string",
    "accountType": "BUSINESS"
  }'

Responses

Transactions as recipient

Bodyapplication/jsonArray [
amountnumberrequired

Transaction amount

idstringrequired

Transaction id

tokenAddressstringrequired

Transaction token address

tokenTypestringrequired

Transaction token type

Enum"ERC20""ERC721""ERC1155"
senderAddressstringrequired

Sender address

recipientAddressobjectrequired

Recipient address

transactionHashobjectrequired

Transaction hash

typestringrequired

Transaction type

Enum"MINT""TRANSFER""BURN""CLAIM"
triggerProcessTypestringrequired

Trigger process type

Enum"PURCHASE""SPEND""EARN""CAMPAIGN_USER_CLAIM""CAMPAIGN_SYSTEM_CLAIM""CAMPAIGN_BUSINESS_CLAIM""REDEMPTION_SPEND""REDEMPTION_RECEIVE""MIGRATION""ADMIN_TRIGGERED"
triggerProcessIdobjectrequired

Trigger process id, this is the id of the entity that triggered the transaction if applicable (e.g. CampaignUserClaim id)

statusstringrequired

Transaction status

Enum"created""processing""broadcasted""succeeded""failed"
createdAtobjectrequired

create date

updatedAtobjectrequired

update date

]
Response
application/json
[ { "amount": 0, "id": "string", "tokenAddress": "string", "tokenType": "ERC20", "senderAddress": "string", "recipientAddress": {}, "transactionHash": {}, "type": "MINT", "triggerProcessType": "PURCHASE", "triggerProcessId": {}, "status": "created", "createdAt": {}, "updatedAt": {} } ]

ADMIN: Get transactions

Request

Get transactions for authenticated admin

Bodyapplication/jsonrequired
emailstring

User email

userIdentifierstring

User identifier

Enum"id""email""instagramAccountId""externalId"
accountAddressstring

User account address

businessOrUserIdstring

Business or user id

accountTypestringrequired

Type to retrieve transactions from: user or business

Enum"BUSINESS""USER"
curl -i -X GET \
  https://docs.pers.ninja/_mock/swagger/transaction/admin \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "email": "string",
    "userIdentifier": "id",
    "accountAddress": "string",
    "businessOrUserId": "string",
    "accountType": "BUSINESS"
  }'

Responses

Transactions as recipient

Bodyapplication/jsonArray [
amountnumberrequired

Transaction amount

idstringrequired

Transaction id

tokenAddressstringrequired

Transaction token address

tokenTypestringrequired

Transaction token type

Enum"ERC20""ERC721""ERC1155"
senderAddressstringrequired

Sender address

recipientAddressobjectrequired

Recipient address

transactionHashobjectrequired

Transaction hash

typestringrequired

Transaction type

Enum"MINT""TRANSFER""BURN""CLAIM"
triggerProcessTypestringrequired

Trigger process type

Enum"PURCHASE""SPEND""EARN""CAMPAIGN_USER_CLAIM""CAMPAIGN_SYSTEM_CLAIM""CAMPAIGN_BUSINESS_CLAIM""REDEMPTION_SPEND""REDEMPTION_RECEIVE""MIGRATION""ADMIN_TRIGGERED"
triggerProcessIdobjectrequired

Trigger process id, this is the id of the entity that triggered the transaction if applicable (e.g. CampaignUserClaim id)

statusstringrequired

Transaction status

Enum"created""processing""broadcasted""succeeded""failed"
createdAtobjectrequired

create date

updatedAtobjectrequired

update date

]
Response
application/json
[ { "amount": 0, "id": "string", "tokenAddress": "string", "tokenType": "ERC20", "senderAddress": "string", "recipientAddress": {}, "transactionHash": {}, "type": "MINT", "triggerProcessType": "PURCHASE", "triggerProcessId": {}, "status": "created", "createdAt": {}, "updatedAt": {} } ]

Get transaction by id

Request

Get transaction by id

Path
idstringrequired
curl -i -X GET \
  'https://docs.pers.ninja/_mock/swagger/transaction/{id}' \
  -H 'x-project-key: YOUR_API_KEY_HERE'

Responses

Transaction

Bodyapplication/json
amountnumberrequired

Transaction amount

idstringrequired

Transaction id

tokenAddressstringrequired

Transaction token address

tokenTypestringrequired

Transaction token type

Enum"ERC20""ERC721""ERC1155"
senderAddressstringrequired

Sender address

recipientAddressobjectrequired

Recipient address

transactionHashobjectrequired

Transaction hash

typestringrequired

Transaction type

Enum"MINT""TRANSFER""BURN""CLAIM"
triggerProcessTypestringrequired

Trigger process type

Enum"PURCHASE""SPEND""EARN""CAMPAIGN_USER_CLAIM""CAMPAIGN_SYSTEM_CLAIM""CAMPAIGN_BUSINESS_CLAIM""REDEMPTION_SPEND""REDEMPTION_RECEIVE""MIGRATION""ADMIN_TRIGGERED"
triggerProcessIdobjectrequired

Trigger process id, this is the id of the entity that triggered the transaction if applicable (e.g. CampaignUserClaim id)

statusstringrequired

Transaction status

Enum"created""processing""broadcasted""succeeded""failed"
createdAtobjectrequired

create date

updatedAtobjectrequired

update date

Response
application/json
{ "amount": 0, "id": "string", "tokenAddress": "string", "tokenType": "ERC20", "senderAddress": "string", "recipientAddress": {}, "transactionHash": {}, "type": "MINT", "triggerProcessType": "PURCHASE", "triggerProcessId": {}, "status": "created", "createdAt": {}, "updatedAt": {} }

User

User endpoints

Operations

Admin

Operations

Auth

Operations

Web3 Contract

Operations

Web3 Chain

Operations

Root

Operations

Balance

Operations

File

Operations