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
stringAn API key or subtoken.
cancellationToken
CancellationTokenA token to cancel the request.
Returns
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.