Skip to content

Commit 7cc5888

Browse files
committed
edit pass: tutorial-atlas-2-2-apis
1 parent 0c4230a commit 7cc5888

File tree

1 file changed

+29
-29
lines changed

1 file changed

+29
-29
lines changed

articles/purview/tutorial-atlas-2-2-apis.md

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "How to use new APIs available with Atlas 2.2"
2+
title: "How to use new APIs available with Atlas 2.2."
33
description: This tutorial describes the new APIs available with Atlas 2.2 upgrade.
44
author: nayenama
55
ms.author: nayenama
@@ -8,28 +8,28 @@ ms.subservice: purview-data-catalog
88
ms.topic: tutorial
99
ms.date: 04/18/2022
1010

11-
# 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.
1212
---
1313

1414
# Tutorial: Atlas 2.2 new functionality
1515

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.
1917

2018
## Prerequisites
2119

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).
2323

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).
2525

26-
## Business Metadata APIs
26+
## Business metadata APIs
2727

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.
2929

30-
### Create a Business metadata with attributes
30+
### Create a business metadata with attributes
3131

32-
You can send POST request to the following endpoint
32+
You can send a POST request to the following endpoint:
3333

3434
```
3535
POST {{endpoint}}/api/atlas/v2/types/typedefs
@@ -67,9 +67,9 @@ Sample JSON
6767
}
6868
```
6969

70-
### Add/Update an attribute to an existing business metadata
70+
### Add/update an attribute to an existing business metadata
7171

72-
You can send PUT request to the following endpoint:
72+
You can send a PUT request to the following endpoint:
7373

7474
```
7575
PUT {{endpoint}}/api/atlas/v2/types/typedefs
@@ -118,17 +118,17 @@ Sample JSON
118118
}
119119
```
120120

121-
### Get Business metadata definition
121+
### Get business metadata definition
122122

123-
You can send GET request to the following endpoint
123+
You can send a GET request to the following endpoint:
124124

125125
```
126126
GET {endpoint}}/api/atlas/v2/types/typedef/name/{{Business Metadata Name}}
127127
```
128128

129-
### Set Business metadata attribute to an entity
129+
### Set business metadata attribute to an entity
130130

131-
You can send POST request to the following endpoint
131+
You can send a POST request to the following endpoint:
132132

133133
```
134134
POST {{endpoint}}/api/atlas/v2/entity/guid/{{GUID}}/businessmetadata?isOverwrite=true
@@ -145,9 +145,9 @@ Sample JSON
145145
}
146146
```
147147

148-
### Delete Business metadata attribute from an entity
148+
### Delete a business metadata attribute from an entity
149149

150-
You can send DELETE request to the following endpoint
150+
You can send a DELETE request to the following endpoint:
151151

152152
```
153153
DELETE {{endpoint}}/api/atlas/v2/entity/guid/{{GUID}}/businessmetadata?isOverwrite=true
@@ -163,21 +163,21 @@ Sample JSON
163163
}
164164
```
165165

166-
### Delete Business metadata type definition
166+
### Delete business metadata type definition
167167

168-
You can send DELETE request to the following endpoint
168+
You can send a DELETE request to the following endpoint:
169169

170170
```
171171
DELETE {{endpoint}}/api/atlas/v2/types/typedef/name/{{Business Metadata Name}}
172172
```
173173

174-
## Custom Attribute APIs
174+
## Custom attribute APIs
175175

176-
Custom Attributes are key value pairs which can be directly added to an atlas entity.
176+
Custom attributes are key value pairs that can be directly added to an Atlas entity.
177177

178-
### Set Custom Attribute to an entity
178+
### Set a custom attribute to an entity
179179

180-
You can send POST request to the following endpoint
180+
You can send a POST request to the following endpoint:
181181

182182
```
183183
POST {{endpoint}}/api/atlas/v2/entity
@@ -204,11 +204,11 @@ Sample JSON
204204
```
205205
## Label APIs
206206

207-
Labels are free text tags which can be applied to any atlas entity.
207+
Labels are free text tags that can be applied to any Atlas entity.
208208

209209
### Set labels to an entity
210210

211-
You can send POST request to the following endpoint
211+
You can send a POST request to the following endpoint:
212212

213213
```
214214
POST {{endpoint}}/api/atlas/v2/entity/guid/{{GUID}}/labels
@@ -225,7 +225,7 @@ Sample JSON
225225

226226
### Delete labels to an entity
227227

228-
You can send DELETE request to the following endpoint:
228+
You can send a DELETE request to the following endpoint:
229229

230230
```
231231
DELETE {{endpoint}}/api/atlas/v2/entity/guid/{{GUID}}/labels
@@ -243,4 +243,4 @@ Sample JSON
243243

244244
> [!div class="nextstepaction"]
245245
> [Manage data sources](manage-data-sources.md)
246-
> [Purview Data Plane REST APIs](/rest/api/purview/)
246+
> [Microsoft Purview data plane REST APIs](/rest/api/purview/)

0 commit comments

Comments
 (0)