-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheDiscovery_API_Plugin_v2
39 lines (35 loc) · 1.46 KB
/
eDiscovery_API_Plugin_v2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
openapi: 3.0.0
info:
title: eDiscovery Case Plugin
description: Skills for creating a plugin that will help create eDiscovery case & additional workflows in Purview via Graph API Call
version: "v1"
servers:
- url: https://graph.microsoft.com/v1.0/security/cases
paths:
/ediscoveryCases:
post:
operationId: Create eDiscovery case in Purview
description: Create eDiscovery case based on user supplied name
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
displayName:
type: string
description: The name of the eDiscovery case
description:
type: string
description: The eDiscovery case description
externalId:
type: string
description: The external case number for customer reference
required:
- displayName
responses:
"200":
description: OK
content:
application/json: