getUserCollectionListings()
Retrieve collection listings for a User
Get Listings from a single Collection for a User with optional status filter.
Parameters
export type GetUserCollectionListingsProps = {
collectionId: string;
status?: ListingStatus = 'active';
walletUserId?: string;
}
Examples
const listings = await assetlayer.listings.getUserCollectionListings({
collectionId: 'collectionId'
});
Return Types
type ReturnType = Listing[];
Alternatives
user()Last updated