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: I can use the new APIs available with Atlas 2.2
11
+
# Customer intent: I can use the new APIs available with Atlas 2.2.
12
12
---
13
13
14
14
# Tutorial: Atlas 2.2 new functionality
15
15
16
-
In this tutorial, you learn how to programmatically interact with new Atlas 2.2 APIs with Microsoft Purview's data map.
17
-
18
-
If you don't have an Azure subscription, [create a free account](https://azure.microsoft.com/free/?ref=microsoft.com&utm_source=microsoft.com&utm_medium=docs&utm_campaign=visualstudio) before you begin.
16
+
In this tutorial, learn to programmatically interact with new Atlas 2.2 APIs with Microsoft Purview's data map.
19
17
20
18
## Prerequisites
21
19
22
-
* To get started, you must have an existing Microsoft Purview account. If you don't have a catalog, see the [quickstart for creating a Microsoft Purview account](create-catalog-portal.md).
20
+
* If you don't have an Azure subscription, [create a free account](https://azure.microsoft.com/free/?ref=microsoft.com&utm_source=microsoft.com&utm_medium=docs&utm_campaign=visualstudio) before you begin.
21
+
22
+
* You must have an existing Microsoft Purview account. If you don't have a catalog, see [quickstart for creating a Microsoft Purview account](create-catalog-portal.md).
23
23
24
-
* To establish bearer token and to call any Data Plane APIs see [the documentation about how to call REST APIs for Purview Data planes](tutorial-using-rest-apis.md).
24
+
* To establish bearer token and to call any data plane APIs see [the documentation about how to call REST APIs for Microsoft Purview data planes](tutorial-using-rest-apis.md).
25
25
26
-
## Business Metadata APIs
26
+
## Business metadata APIs
27
27
28
-
Business Metadata is a template containing multiple custom attributes (key values) which can be created globally and then applied across multiple typedefs.
28
+
The template, business metadata, contains multiple custom attributes (key values) that can be created globally then applied across multiple typedefs.
29
29
30
-
### Create a Business metadata with attributes
30
+
### Create a business metadata with attributes
31
31
32
-
You can send 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
@@ -67,9 +67,9 @@ Sample JSON
67
67
}
68
68
```
69
69
70
-
### Add/Update an attribute to an existing business metadata
70
+
### Add/update an attribute to an existing business metadata
71
71
72
-
You can send 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
@@ -118,17 +118,17 @@ Sample JSON
118
118
}
119
119
```
120
120
121
-
### Get Business metadata definition
121
+
### Get business metadata definition
122
122
123
-
You can send 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
-
### Set Business metadata attribute to an entity
129
+
### Set business metadata attribute to an entity
130
130
131
-
You can send 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
@@ -145,9 +145,9 @@ Sample JSON
145
145
}
146
146
```
147
147
148
-
### Delete Business metadata attribute from an entity
148
+
### Delete a business metadata attribute from an entity
149
149
150
-
You can send DELETE request to the following endpoint
150
+
You can send a DELETE request to the following endpoint:
0 commit comments