You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: use DELETE for multitenancy subwallet removal (#4172)
* feat: use DELETE for multitenancy subwallet removal
Replace POST /multitenancy/wallet/{wallet_id}/remove with
DELETE /multitenancy/wallet/{wallet_id} for REST consistency.
Updates docs and regenerated OpenAPI/Swagger specs.
Signed-off-by: Emiliano Suñé <2395873+esune@users.noreply.github.com>
* feat: keep deprecated POST subwallet remove endpoint
Retain POST /multitenancy/wallet/{wallet_id}/remove as a deprecated alias
of DELETE /multitenancy/wallet/{wallet_id} to avoid a breaking change.
Marks the old route deprecated in the OpenAPI/Swagger specs and docs.
Signed-off-by: Emiliano Suñé <2395873+esune@users.noreply.github.com>
---------
Signed-off-by: Emiliano Suñé <2395873+esune@users.noreply.github.com>
Co-authored-by: jamshale <31809382+jamshale@users.noreply.github.com>
@@ -379,6 +379,10 @@ curl -X POST "${ACAPY_ADMIN_URL}/multitenancy/wallet/{wallet_id}/remove" \
379
379
{}
380
380
```
381
381
382
+
> The `POST /multitenancy/wallet/{wallet_id}/remove` endpoint is deprecated and
383
+
> will be removed in a future release. Use `DELETE /multitenancy/wallet/{wallet_id}`
384
+
> instead.
385
+
382
386
### Per tenant settings
383
387
384
388
To allow the configuring of ACA-Py startup parameters/environment variables at a tenant/subwallet level. [PR#2233](https://github.com/openwallet-foundation/acapy/pull/2233) will provide the ability to update the following subset of settings when creating or updating the subwallet:
0 commit comments