> ## 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.

# Delete

Delete a metadata queue item by ID.

<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="Queue Item ID" type="string" required>
  The ID of the queue item.
</ParamField>

<ResponseExample>
  ```json theme={null}
  {
  	success: true,
  	deleted: {
  		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'
  	}
  }
  ```
</ResponseExample>
