Brand Collectible Assets
Get list of all NFTs in a brand collectible.
Parameters
Name | Type | Required | Description |
---|---|---|---|
collectionId |
String | Required | Id of a brand collectible |
Example Request
Query
query BrandCollectibleNFTs($input: BrandCollectiblesNFTInput) {
brandCollectiblesNFTs(input: $input) {
cursor
brandCollectiblesNFTList {
collectionId
createdAt
collectionContract
}
}
}
Query Variables
{
"input": {
"collectionId": "11"
}
}
HTTP Headers
{
"Authorization": "Bearer <insert token>"
}
Example Response
{
"data": {
"brandCollectiblesNFTs": {
"cursor": "100",
"brandCollectiblesNFTList": [
{
"collectionId": "11",
"createdAt": "2022-11-25T07:30:49.313217+00:00",
"collectionContract": "0x2878928cadf313ef27b35f985ef3e57b2aac7f4d"
}
]
}
}
}