> ## Documentation Index
> Fetch the complete documentation index at: https://docs.etrnl.app/llms.txt
> Use this file to discover all available pages before exploring further.

# Create metadata queue item

Add an item to this page's metadata queue.

<br />

## Headers

<ParamField header="API-Key" placeholder="Your Private API Key" type="string" required>
  Your organization's private API key.
</ParamField>

## URL Params

<ParamField path="id" placeholder="Page ID" type="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.
</ParamField>

## Body

<ParamField body="displayName" placeholder="John's NFT" type="string">
  This is the queue item's display name as it will appear in the programmer.
</ParamField>

<ParamField body="tagMetadata" placeholder="{ nftId: 123 }" type="string">
  This is a JSON object that defines additional information that will be tied to the tag that's programmed for this queue item.
</ParamField>

<ResponseExample>
  ```json theme={null}
  {
        success: true,
        queueItem: {
          id: 200,
          tagMetadata: {
  			nftId: 123
  		},
          displayName: 'My Test',
          pageId: 191,
          groupId: null,
          organizationId: 1276,
          fulfillmentDate: null,
          fulfilled: false
        }
      }
  ```
</ResponseExample>
