POST
/
v1
/
pages
/
{id}
/
queue
Create metadata queue item
curl --request POST \
  --url https://third-party.etrnl.app/v1/pages/{id}/queue \
  --header 'API-Key: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "displayName": "<string>",
  "tagMetadata": "<string>"
}'
{
      success: true,
      queueItem: {
        id: 200,
        tagMetadata: {
			nftId: 123
		},
        displayName: 'My Test',
        pageId: 191,
        groupId: null,
        organizationId: 1276,
        fulfillmentDate: null,
        fulfilled: false
      }
    }
Add an item to this page’s metadata queue.

Headers

API-Key
string
required
Your organization’s private API key.

URL Params

id
string
required
The ID of the secure page. This can be found by editing the page in the etrnl dashboard and retrieving the number from the URL.

Body

displayName
string
This is the queue item’s display name as it will appear in the programmer.
tagMetadata
string
This is a JSON object that defines additional information that will be tied to the tag that’s programmed for this queue item.
{
      success: true,
      queueItem: {
        id: 200,
        tagMetadata: {
			nftId: 123
		},
        displayName: 'My Test',
        pageId: 191,
        groupId: null,
        organizationId: 1276,
        fulfillmentDate: null,
        fulfilled: false
      }
    }