- GET http://localhost:7071/api/purview/typedefs
- GET http://localhost:7071/api/purview/typedefs?guid={guid}
- POST http://localhost:7071/api/purview/typedefs
{ "entityDefs": [], "relationshipDefs: [], } - DELETE http://localhost:7071/api/purview/typedefs?guid={guid}
- GET http://localhost:7071/api/storage/containers
- GET http://localhost:7071/api/storage/containers?name=my-new-container
- POST http://localhost:7071/api/storage/containers
{ "name": "my-new-container" }
- GET http://localhost:7071/api/storage/blobs?container=my-new-container
- GET http://localhost:7071/api/storage/blobs?container=my-new-container&blob=test.json
- POST http://localhost:7071/api/storage/blobs
{ "container": "my-new-container", "blob": "test.json", "content": "{\"key\":\"value\"}" }