Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
curl --location \
  --request PUT 'https://<domain>/api/tables/<TABLE ID>/related?object_id=<COLLECTION INSTANCE ID>&relationship=MEMBER_OF' \
  --header "Authorization: Bearer ${ACCESS_TOKEN}"

Adding and Steward to a table

Similarly to add an owner use the relationship relationship=OWNED_BY

Code Block
curl --location \
  --request PUT 'https://<domain>/api/tables/<TABLE ID>/related?object_id=<user-id>&relationship=STEWARDED_BY' \
  --header "Authorization: Bearer ${ACCESS_TOKEN}"

Creating manual lineage to an upstream table

...