Return one record-matching profile.
using System.Net.Http.Headers;var client = new HttpClient();var request = new HttpRequestMessage{ Method = HttpMethod.Get, RequestUri = new Uri("https://example.com/api/workspace/admin/record-matching/example"),};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/admin/record-matching/example';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/admin/record-matching/exampleAuthorizations
Section titled “Authorizations”- None
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”Record-matching profile identifier.
Query Parameters
Section titled “Query Parameters”Optional access token for clients that cannot set Authorization headers. Prefer Authorization: Bearer <token> when possible.
Responses
Section titled “Responses”OK
object
Full record-matching profile configuration.
object
Configured exact-normalized or fuzzy matching rule.
object
Configured field binding for one matching rule.
object
Stable rule-field identifier.
Bound entity-field definition identifier.
Portable technical field key.
Current actor-readable field label.
Deterministic field order within the rule.
Optimistic-concurrency version.
Configured fuzzy TextKey field settings.
object
Inclusive distance threshold from one through three.
Minimum normalized rune length required for both values.
Field contribution to the fuzzy rule similarity, from one through one hundred.
object
object
object
object
Example
{ "Data": { "TargetKind": 0, "ActionMode": 0, "Rules": [ { "MatchMode": 0, "Fields": [ { "FieldType": 0, "Normalizer": 0, "ComparisonMode": 0, "FuzzySettings": { "Algorithm": 0, "DiacriticMode": 0, "TokenOrderMode": 0 } } ] } ] }, "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
Full record-matching profile configuration.
object
Configured exact-normalized or fuzzy matching rule.
object
Configured field binding for one matching rule.
object
Stable rule-field identifier.
Bound entity-field definition identifier.
Portable technical field key.
Current actor-readable field label.
Deterministic field order within the rule.
Optimistic-concurrency version.
Configured fuzzy TextKey field settings.
object
Inclusive distance threshold from one through three.
Minimum normalized rune length required for both values.
Field contribution to the fuzzy rule similarity, from one through one hundred.
object
object
object
object
Example
{ "Data": { "TargetKind": 0, "ActionMode": 0, "Rules": [ { "MatchMode": 0, "Fields": [ { "FieldType": 0, "Normalizer": 0, "ComparisonMode": 0, "FuzzySettings": { "Algorithm": 0, "DiacriticMode": 0, "TokenOrderMode": 0 } } ] } ] }, "Errors": [ { "Type": 0, "Severity": 0 } ], "Warnings": [ { "Type": 0, "Severity": 0 } ]}