URL Groups
Get unfulfilled queue items
GET
/
v1
/
url-groups
/
{id}
/
queue
/
unfulfilled
curl --request GET \
--url https://third-party.etrnl.app/v1/url-groups/{id}/queue/unfulfilled \
--header 'API-Key: <api-key>'
{
success: true,
queue: [
{
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'
}
]
}
Returns all unfulfilled queue items by the URL group ID.
Headers
Your organization’s private API key.
URL Params
The ID of the URL Group.
{
success: true,
queue: [
{
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'
}
]
}
curl --request GET \
--url https://third-party.etrnl.app/v1/url-groups/{id}/queue/unfulfilled \
--header 'API-Key: <api-key>'
{
success: true,
queue: [
{
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'
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.