Skip to main content
PUT
/
v1
/
queue-item
/
{id}
Update
curl --request PUT \
  --url https://third-party.etrnl.app/v1/queue-item/{id} \
  --header 'API-Key: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "displayName": "<string>",
  "tagMetadata": "<string>"
}
'
{
	success: true,
	queueItem: {
		id: 399,
		tagMetadata: {
			nftId: 123
		},
		displayName: "John's NFT data",
		pageId: null,
		groupId: 190,
		organizationId: 1275,
		fulfillmentDate: null,
		fulfilled: false,
		creationDate: '2023-10-31T00:41:23.000Z'
	}
}

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.

Update a metadata queue item by ID.

Headers

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

URL Params

id
string
required
The ID of the queue item.

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: 399,
		tagMetadata: {
			nftId: 123
		},
		displayName: "John's NFT data",
		pageId: null,
		groupId: 190,
		organizationId: 1275,
		fulfillmentDate: null,
		fulfilled: false,
		creationDate: '2023-10-31T00:41:23.000Z'
	}
}