Skip to main content
POST
/
links
/
add
curl --request POST \
--url https://api.datalinks.com/api/v1/links/add \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"from": {
"username": "johndoe",
"namespace": "cinematography",
"dataset": "movies",
"columnName": "director"
},
"to": {
"username": "janedoe",
"namespace": "entertainment",
"dataset": "films",
"columnName": "director_name"
},
"matchType": "ExactMatch"
}'
This response does not have an example.

Authorizations

Authorization
string
header
required

Body

application/json
from
object
required
Example:
to
object
required
Example:
matchType
enum<string>
required
Available options:
ExactMatch,
GeoMatch
Example:
options
object

Response