PASSPORT

Welcome to the Passport v2 section of the API documentation. The following API documentation will guide you through the necessary steps to redeem an NFT via the RE:DREAMER API.

NFT Redemption

Assuming that users are on the go and are using Android or iOS devices, the redemption process is as follow:

  1. Open the internal browser of the MetaMask or any other compatible wallet app.

  2. Go to the redemption web app and connect your wallet.

  3. The web app will display a list of campaigns.

  4. Select a campaign from the list.

  5. The web app will show a list of available NFTs for the selected campaign.

  6. Choose an NFT to redeem.

  7. The web application will display a unique QR code or promotional code for the selected NFT, based on the campaign configuration.

  8. In the case of a QR code, the Event Organizer (EO) can utilize a scanning application (RE:VIEW) to validate the code.

  9. If it is a promotional code, users can enter the code in a designated area to avail the associated benefits.

STEP 1: List campaigns for a network

To retrieve the list of campaigns available for a specific network, send a GET request to the following endpoint.

List campaigns for a network

GET /api/v1/passport/:network/campaigns

Returns a list of valid campaigns for a given network.

Path Parameters

Query Parameters

Headers

{
    "data": [
        {
            "id": String,
            "uuid": String,
            "network": "eth",
            "name": String,
            "description": String,
            "validated_description": String,
            "redeemed_description": String,
            "image_url": String,
            "contract_addresses": [
                String
            ],
            "start_time": "2023-02-24T16:00:00Z",
            "end_time": "2023-02-28T15:59:59Z",
            "created_at": "2023-02-23T08:07:24.890266Z",
            "updated_at": "2023-02-23T08:08:38.173575Z",
            "deleted_at": "0001-01-01T00:00:00Z"
        }
    ]
}

STEP 2: List NFTs for a campaign

To retrieve the list of NFTs eligible for redemption in a specific campaign, send a GET request to the following endpoint.

List NFTs for a campaign

GET /api/v1/passport/:network/campaigns/:uuid/nfts

Returns a list of eligible NFTs owned by the connected wallet for a specific campaign.

Path Parameters

Headers

{
    "data": [
        {
            "id": String,
            "uuid": String,
            "network": "eth",
            "contract_address": String,
            "token_id": Integer,
            "is_valid": Boolean,
            "is_redeemable": Boolean,
            "created_at": "0001-01-01T00:00:00Z",
            "updated_at": "0001-01-01T00:00:00Z",
            "deleted_at": "0001-01-01T00:00:00Z",
            "name": String,
            "description": String,
            "image": String,
            "external_url": String,
            "animation_url": String,
            "attributes": []
        }
    ]
}

STEP 3: Generate authorization message

After obtaining the unique identifier of the selected campaign, as well as the token identifier and contract address of the chosen NFT, the authorization message can be generated by sending a POST request to the following endpoint.

Generate authorization message

POST /api/v1/passport/:network/campaigns/:uuid/authorization

Returns the authorization information that needs to be signed using the private key associated with the wallet address intended for NFT redemption.

Path Parameters

Request Body

{
    "uuid": String,
    "domain": {
        "name": String,
        "version": String,
        "chainId": Integer,
        "verifyingContract": String
    },
    "types": {
        "EIP712Domain": [
            {
                "name": "name",
                "type": "string"
            },
            {
                "name": "version",
                "type": "string"
            },
            {
                "name": "chainId",
                "type": "uint256"
            },
            {
                "name": "verifyingContract",
                "type": "address"
            }
        ],
        "ForwardRequest": [
            {
                "name": "from",
                "type": "address"
            },
            {
                "name": "to",
                "type": "address"
            },
            {
                "name": "value",
                "type": "uint256"
            },
            {
                "name": "gas",
                "type": "uint256"
            },
            {
                "name": "nonce",
                "type": "uint256"
            },
            {
                "name": "data",
                "type": "bytes"
            },
            {
                "name": "validUntilTime",
                "type": "uint256"
            }
        ]
    },
    "primaryType": String,
    "message": {
        "data": String,
        "from": String,
        "gas": Integer,
        "nonce": Integer,
        "to": String,
        "validUntilTime": Integer,
        "value": Integer
    }
}

Response Parameters

STEP 4: Get the signature

After obtaining the authorization message, you can construct a JSON object by utilizing domain, types, primaryType, and message. The structure of the JSON object adheres to EIP-712 standard.

Ethereum provider API

In order to utilize the window.ethereum provider object for suggesting users to sign the EIP-712 message, it is necessary to have the MetaMask browser extension installed.

For instructions on constructing the EIP-712 message and obtaining the signature, please consult the provided JavaScript code snippet below.

const messageParam = {
  domain,
  message,
  types,
  primaryType
}

ethereum.request({
  "jsonrpc": "2.0",
  "method": "eth_signTypedData_v4",
  "params": [
    connectedWallet,
    JSON.stringify(messageParam)
  ]
}).then((signature) => console.log(`Signed: ${signature}`))
  .catch((error) => console.error);

To observe the aforementioned code in action, you can visit our JSFiddle page and follow the steps outlined below::

  1. To establish a connection with the wallet, click on the Connect Wallet button. This action will initiate a popup if the MetaMask wallet extension is installed in your web browser.

  2. Select the desired wallet and click the Next button.

  3. Click the Connect button to establish the wallet connection.

  4. Copy the API response from STEP 3 and paste it into the "input authorization response" textbox.

  5. Click the Sign button to sign the message. This action will trigger a popup if the MetaMask wallet extension is installed in your web browser.

  6. In the popup, click the Sign button in the popup.

  7. Retrieve the generated signature.

For managing multiple wallets, e.g. Metamask, Gnosis, Coinbase wallet, we recommend to use web3-react packages which is developed by Uniswap.

STEP 5: Redeem an NFT

To redeem an NFT, send a POST request to the following endpoint:

Redeem an NFT for specific campaign

POST /api/v1/passport/:network/campaigns/:uuid/redeem

Returns a Base64-encoded hash string, which can be used to generate a QR code or displayed directly to end users.

Path Parameters

Headers

Request Body

{
    "after_redeemed": 0 | 1 | 2,
    "validated_description": String,
    "redeemed_description": String,
    "qr_code": String,
    "created_at": "2023-02-24T08:23:18.841173051Z"
}

Response Parameters

Upon decoding the ${redemption-info} string, a JSON object will be returned with the following format:

{
    "network":String,
    "campaign_uuid":String,
    "campaign_id":String,
    "contract_address":String,
    "token_id":Integer,
    "requester_address":String,
    "hash":String
}

Redeem Methods

The Campaign configuration in Redeem Console offers three redemption methods:

STEP 6: Validate the QR code

Please be aware that this API endpoint will be deprecated in the future. We are introducing a new product called RE:VIEW, which will provide the validation utility instead.

To validate the QR code, send a POST request to the following endpoint:

Validate the code

POST /api/v1/passport/:network/campaigns/:uuid/validate

Validate the hash string extracted from the qr_code for redemption.

Path Parameters

Headers

Request Body

{
    "id": String,
    "uuid": String,
    "network": "eth",
    "name": String,
    "description": String,
    "validated_description": String,
    "redeemed_description": String,
    "image_url": String,
    "contract_addresses": [
        String
    ],
    "start_time": "2023-02-17T16:00:00Z",
    "end_time": "2023-02-28T15:59:59Z",
    "created_at": "2023-02-18T08:27:51.46832Z",
    "updated_at": "2023-02-24T06:20:11.968802Z",
    "deleted_at": "0001-01-01T00:00:00Z"
}

Error Codes

Testing

For testing purpose, the QR code below can be used. The QR code was generated in the testnet and can be verified an unlimited number of times.

Please use this API key to validate this QR code. 8AetTdcKwtrOvZJcPLI5VP2qxL70_kQ9Pkn6SNECrwo=

Last updated