Checklist
Description
In the docs for the log search endpoint (as well as the as a previous version of the management SDK) it was possible to do a search from a log checkpoint.
The relevant section of the docs (https://auth0.com/docs/api/management/v2/logs/get-logs)
To search from a checkpoint log ID, use the following parameters:
from: Log Event ID from which to start retrieving logs. You can limit the number of logs returned using the take parameter. If you use from at the same time as q, from takes precedence and q is ignored.
take: Number of entries to retrieve when using the from parameter.
I can't find these parameters any more. Using the previous version my code looked like this:
var logs = await client.Logs.GetAllAsync(new GetLogsRequest()
{
From = logId,
Take = 100
});
Reproduction
- Create client
- Try to fetch log posts from a certain checkpoint
Additional context
No response
auth0.net version
8.1.0
.NET version
10
Checklist
Description
In the docs for the log search endpoint (as well as the as a previous version of the management SDK) it was possible to do a search from a log checkpoint.
The relevant section of the docs (https://auth0.com/docs/api/management/v2/logs/get-logs)
I can't find these parameters any more. Using the previous version my code looked like this:
Reproduction
Additional context
No response
auth0.net version
8.1.0
.NET version
10