Skip to content

Commit baa2606

Browse files
authored
Update tutorial-atlas-2-2-apis.md
1 parent 003cf7c commit baa2606

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

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

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.subservice: purview-data-catalog
88
ms.topic: tutorial
99
ms.date: 04/18/2022
1010

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

1414
# Tutorial: Atlas 2.2 new functionality
@@ -29,7 +29,7 @@ Business metadata is a template that contains custom attributes (key values). Yo
2929

3030
### Create business metadata with attributes
3131

32-
You can send a '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
@@ -69,7 +69,7 @@ Sample JSON:
6969

7070
### Add or update an attribute to existing business metadata
7171

72-
You can send a '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
@@ -120,15 +120,15 @@ Sample JSON:
120120

121121
### Get a business metadata definition
122122

123-
You can send a '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

129129
### Set a business metadata attribute to an entity
130130

131-
You can send a '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
@@ -147,7 +147,7 @@ Sample JSON:
147147

148148
### Delete a business metadata attribute from an entity
149149

150-
You can send a '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
@@ -165,7 +165,7 @@ Sample JSON:
165165

166166
### Delete a business metadata type definition
167167

168-
You can send a '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}}
@@ -177,7 +177,7 @@ Custom attributes are key/value pairs that can be directly added to an Atlas ent
177177

178178
### Set a custom attribute to an entity
179179

180-
You can send a '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
@@ -208,7 +208,7 @@ 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 a '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 a '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

0 commit comments

Comments
 (0)