Table of Contents

Method GetDailyCraftedItems

Namespace
GuildWars2.Hero.Crafting.Daily
Assembly
GW2SDK.dll

GetDailyCraftedItems(string?, CancellationToken)

Retrieves the items that were crafted today by the account associated with the provided access token. This endpoint is only accessible with a valid access token.

public Task<(HashSet<string> Value, MessageContext Context)> GetDailyCraftedItems(string? accessToken, CancellationToken cancellationToken = default)

Parameters

accessToken string

An API key or subtoken.

cancellationToken CancellationToken

A token to cancel the request.

Returns

Task<(HashSet<string> Value, MessageContext Context)>

A task that represents the API request.

Remarks

The returned values are strings such as "charged_quartz_crystal" instead of the item ID, so you will need to maintain a conversion from the strings to the item IDs to get the item details.