application-research / delta-ui

7 stars 0 forks source link

[Feature] Wallets/Datasets association: many-many #44

Closed jcace closed 1 year ago

jcace commented 1 year ago

See: https://github.com/application-research/delta-dm/pull/56

Wallets/Dataset association is now many-many - update the Wallets page so that each wallet can be associated with one or more datasets at the same time

jcace commented 1 year ago

example call to associate wallet with 2 datasets:

curl --request POST \
  --url 'http://localhost:1314/api/v1/wallets/associate?=' \
  --header 'Authorization: Bearer ESTXXXARY' \
  --header 'Content-Type: application/json' \
  --data '{
    "address": "f1p3l3wgnfukemmaupqecwcoqp7fcgjcqgqcq7rja",
    "datasets": ["sucho-s3", "radiant-earth-poc"]
}'