Return entity definitions and compatible fields for profile configuration.
GET
/api/workspace/admin/record-matching/target-options
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/target-options"),};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/target-options';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/target-optionsAuthorizations
Section titled “Authorizations”- None
Parameters
Section titled “Parameters”Query Parameters
Section titled “Query Parameters”access_token
string
Optional access token for clients that cannot set Authorization headers. Prefer Authorization: Bearer <token> when possible.
Responses
Section titled “Responses”OK
Media typeapplication/json
object
Data
Entity definition and compatible primary-table fields available for profile configuration.
object
Entities
Array<object>
Selectable entity definition for record matching.
object
Id
string
Name
string
DisplayName
string
Fields
Array<object>
Selectable primary-table field for record matching, including exact normalizers and explicit fuzzy support.
object
Id
Entity-field definition identifier.
string
Key
Portable technical field key.
string
DisplayName
Current field label.
string
FieldType
integer format: int32
Normalizers
Supported exact and fuzzy normalizers.
Array<integer>
SupportsFuzzy
Whether this field supports fuzzy TextKey comparison.
boolean
FuzzyAlgorithms
Supported fuzzy algorithms when SupportsFuzzy is true.
Array<integer>
Errors
Array<object>
object
Code
required
string
Message
required
string
Target
string
Field
string
Metadata
object
key
additional properties
string
Type
integer format: int32
Severity
integer format: int32
Warnings
Array<object>
object
Code
required
string
Message
required
string
Target
string
Field
string
Metadata
object
key
additional properties
string
Type
integer format: int32
Severity
integer format: int32
Success
boolean
Example
{ "Data": { "Entities": [ { "Fields": [ { "FieldType": 0, "Normalizers": [ 0 ], "FuzzyAlgorithms": [ 0 ] } ] } ] }, "Errors": [ { "Type": 0, "Severity": 0 } ], "Warnings": [ { "Type": 0, "Severity": 0 } ]}Forbidden
Media typeapplication/json
object
type
string
title
string
status
integer format: int32
detail
string
instance
string
key
additional properties
Examplegenerated
{ "type": "example", "title": "example", "status": 1, "detail": "example", "instance": "example"}