Get Target Creation Property Values

Connections which support creating new sync target objects (destinations) will return target_creation with their target object list. This endpoint will return possible values for properties where enum is true.

If the connection does not support creating new target objects, an HTTP 404 will be returned.

The values array lists the valid options (and labels) for the property. Each member of the values array has a label and value. For exaample,

1{
2 "data": [
3 {
4 "id": "account",
5 "title": "Account ID",
6 "enum": true,
7 "values": [
8 {
9 "value": "1234567::urn:li:organization:987654",
10 "label": "Polytomic Inc. (1234567)"
11 }
12 ]
13 }
14 ]
15}

The value for the selected option should be passed when creating a sync.

Path parameters

idstringRequired
propertystringRequired

Headers

AuthorizationstringRequired

Bearer authentication of the form Bearer <token>, where token is your auth token.

X-Polytomic-VersionstringOptional

Response

OK

dataobjectOptional

Errors