GetDeletedSessions
Retrieves a paginated list of deleted session IDs for the given token, page size and page number.
Returns – A SessionLiteBucketView containing the deleted signing session IDs, along with the total count. (See SessionLiteBucketView in Appendix B)
Parameters
Name | Type | Description |
---|---|---|
encryptedToken | string | Required. Encrypted Token returned from client authentication. Returns null if the token has expired or is invalid. |
pageSize | int | Required. The number of records you want to be displayed on a page. |
pageNum | int | Required. The current zero-based page number your application is on. |
Example – C#
[gdlr_notification icon=”none” type=”color-border” border=”#31BEF9″ color=”#000000″]ServiceAPIClient ws = new ServiceAPIClient();
SessionLiteBucketView sessionLiteView;
var pageSize = 50;
var pageNum = 0;
sessionLiteView = ws.GetDeletedSessions(encryptedToken, pageSize, pageNum);
[/gdlr_notification]