Get Target Creation Property Values
Returns the valid values for a target-creation property on a connection that supports creating new target objects.
Connections which support creating new sync target objects (destinations) will
return `target_creation` with their [target object list](./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,
```json
{
"data": [
{
"id": "account",
"title": "Account ID",
"enum": true,
"values": [
{
"value": "1234567::urn:li:organization:987654",
"label": "Polytomic Inc. (1234567)"
}
]
}
]
}
```
The `value` for the selected option should be passed when [creating a
sync](https://apidocs.polytomic.com/2024-02-08/api-reference/model-sync/create).
Authentication
AuthorizationBasic
This is the Polytomic deployment key (on-premises only)
OR
AuthorizationBearer
This is the Polytomic API key
Path parameters
id
property
Headers
X-Polytomic-Version
Response
OK
data
Errors
400
Bad Request Error
401
Unauthorized Error
403
Forbidden Error
404
Not Found Error
500
Internal Server Error
