Forum Discussion
BoHyun
Sep 03, 2020Brass Contributor
Microsoft Graph API - How can I use 'skiptoken' in c#
Greetings. It is bringing messages and replies to certain team's channel ID. use this, https://graph.microsoft.com/beta/teams/{teamId}/channels/{channelId}/messages/{messageId}/replies?$...
- Sep 08, 2020
BoHyun ,The
$skiptoken
parameter contains an opaque token that references the next page of results and is returned in the URL provided in the@odata.nextLink
property in the response.Please check this documentation for more information
Mayur3399
Feb 22, 2024Copper Contributor
Can you try
await graphClient.Teams[teamId].Channels[channel.Id].Messages[chatId].Replies.WithUrl(OdataNextLink).GetAsync()