Describe the bug
When upserting an asset via [PUT | PATCH] /v1beta1/assets and fetching it back via [GET] /v1beta1/assets/{urn}, the url field is always empty even when we already define it when upserting.
[PATCH] /v1beta1/assets
{
"urn": "sample-urn",
"url": "http://sample-url.com"
}
[GET] /v1beta1/assets/sample-urn
To Reproduce
Steps to reproduce the behavior:
- Upsert an asset via
[PUT | PATCH] /v1beta1/assets with filled url
- Fetch the same asset via
[GET] /v1beta1/assets/{urn}
- See
url is still empty
Expected behavior
url should be returned if it has been upserted.
Describe the bug
When upserting an asset via
[PUT | PATCH] /v1beta1/assetsand fetching it back via[GET] /v1beta1/assets/{urn}, theurlfield is always empty even when we already define it when upserting.[PATCH] /v1beta1/assets[GET] /v1beta1/assets/sample-urnTo Reproduce
Steps to reproduce the behavior:
[PUT | PATCH] /v1beta1/assetswith filledurl[GET] /v1beta1/assets/{urn}urlis still emptyExpected behavior
urlshould be returned if it has been upserted.