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

Token

Operations

Campaign

Operations

Redemption

Operations

Purchase

Operations

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

User

User endpoints

Operations

Admin

Operations

Auth

Operations

Web3 Contract

Operations

Web3 Chain

Operations

Root

Operations

Balance

Operations

File

Operations