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
# Customer intent: As a developer, I want to use the new APIs available with Atlas 2.2 to interact programmatically with Microsoft Purview’s Data Map.
11
+
# Customer intent: As a developer, I want to use the new APIs available with Atlas 2.2 to interact programmatically with the data map in Microsoft Purview.
12
12
---
13
13
14
14
# Tutorial: Atlas 2.2 new functionality
@@ -29,7 +29,7 @@ Business metadata is a template that contains custom attributes (key values). Yo
29
29
30
30
### Create business metadata with attributes
31
31
32
-
You can send a 'POST' request to the following endpoint:
32
+
You can send a `POST` request to the following endpoint:
33
33
34
34
```
35
35
POST {{endpoint}}/api/atlas/v2/types/typedefs
@@ -69,7 +69,7 @@ Sample JSON:
69
69
70
70
### Add or update an attribute to existing business metadata
71
71
72
-
You can send a 'PUT' request to the following endpoint:
72
+
You can send a `PUT` request to the following endpoint:
73
73
74
74
```
75
75
PUT {{endpoint}}/api/atlas/v2/types/typedefs
@@ -120,15 +120,15 @@ Sample JSON:
120
120
121
121
### Get a business metadata definition
122
122
123
-
You can send a 'GET' request to the following endpoint:
123
+
You can send a `GET` request to the following endpoint:
124
124
125
125
```
126
126
GET {endpoint}}/api/atlas/v2/types/typedef/name/{{Business Metadata Name}}
127
127
```
128
128
129
129
### Set a business metadata attribute to an entity
130
130
131
-
You can send a 'POST' request to the following endpoint:
131
+
You can send a `POST` request to the following endpoint:
132
132
133
133
```
134
134
POST {{endpoint}}/api/atlas/v2/entity/guid/{{GUID}}/businessmetadata?isOverwrite=true
@@ -147,7 +147,7 @@ Sample JSON:
147
147
148
148
### Delete a business metadata attribute from an entity
149
149
150
-
You can send a 'DELETE' request to the following endpoint:
150
+
You can send a `DELETE` request to the following endpoint:
0 commit comments