MIMUSH-MSFTE
MIMUSH-MSFTE

Reputation: 137

Microsoft Graph API - What is the lifecycle of the SkipToken?

To utilize paging of the Microsoft Graph API results, you can utilize the "skiptoken".

Does anyone know what the expiration date is on the skip token, if it's extendable, and if it's refreshable?

Upvotes: 0

Views: 918

Answers (1)

Tom Sun
Tom Sun

Reputation: 24539

Does anyone know what the expiration date is on the skip token, if it's extendable, and if it's refreshable?

I don't think that you need to care the lifecycle of the skiptoken.

Based on my understanding, it is the equivalent of a cursor or bookmark, that instructs the server where to resume the record. If you want to retrieve the rest record, the auth bearer token(access token) still required.

For more information about skiptoken parameter, please refer to this link.

Upvotes: 1

Related Questions