Load one bounded candidate page from a successful actor-owned full-scan group.
using System.Net.Http.Headers;var client = new HttpClient();var request = new HttpRequestMessage{ Method = HttpMethod.Get, RequestUri = new Uri("https://example.com/api/workspace/entity/example/record-matching/full-scans/example/groups/example/candidates?page=1&pageSize=100"),};using (var response = await client.SendAsync(request)){ response.EnsureSuccessStatusCode(); var body = await response.Content.ReadAsStringAsync(); Console.WriteLine(body);}const url = 'https://example.com/api/workspace/entity/example/record-matching/full-scans/example/groups/example/candidates?page=1&pageSize=100';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url 'https://example.com/api/workspace/entity/example/record-matching/full-scans/example/groups/example/candidates?page=1&pageSize=100'Page is one-based and pageSize is clamped to the server candidate-page bound. The complete saved result is reauthorized before the requested page is materialized; stale or inaccessible results return HTTP 409 without partial data.
Authorizations
Section titled “Authorizations”- None
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”Target entity definition identifier or key.
Persisted successful job identifier.
Persisted group identifier from the published attempt.
Query Parameters
Section titled “Query Parameters”One-based candidate page.
Requested candidate page size.
Optional access token for clients that cannot set Authorization headers. Prefer Authorization: Bearer <token> when possible.
Responses
Section titled “Responses”OK
object
One bounded candidate page for a persisted full-scan group.
object
Stable saved group identifier.
One-based candidate page.
Applied bounded candidate page size.
Complete candidate count for the group.
Current actor-readable candidate summaries in this page.
Visible record candidate returned by the matching engine.
object
object
object
object
object
object
object
Example
{ "Errors": [ { "Type": 0, "Severity": 0 } ], "Warnings": [ { "Type": 0, "Severity": 0 } ]}Forbidden
object
Examplegenerated
{ "type": "example", "title": "example", "status": 1, "detail": "example", "instance": "example"}Not Found
object
One bounded candidate page for a persisted full-scan group.
object
Stable saved group identifier.
One-based candidate page.
Applied bounded candidate page size.
Complete candidate count for the group.
Current actor-readable candidate summaries in this page.
Visible record candidate returned by the matching engine.
object
object
object
object
object
object
object
Example
{ "Errors": [ { "Type": 0, "Severity": 0 } ], "Warnings": [ { "Type": 0, "Severity": 0 } ]}Conflict
object
One bounded candidate page for a persisted full-scan group.
object
Stable saved group identifier.
One-based candidate page.
Applied bounded candidate page size.
Complete candidate count for the group.
Current actor-readable candidate summaries in this page.
Visible record candidate returned by the matching engine.
object
object
object
object
object
object
object
Example
{ "Errors": [ { "Type": 0, "Severity": 0 } ], "Warnings": [ { "Type": 0, "Severity": 0 } ]}