-
Notifications
You must be signed in to change notification settings - Fork 0
/
apim.json
38 lines (38 loc) · 1.29 KB
/
apim.json
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
38
{
"openapi": "3.0.1",
"info": {
"title": "tmtest",
"version": "v1"
},
"paths": {
"/getUserProfile": {
"get": {
"summary": "Get User Profile",
"operationId": "get-user-profile",
"responses": {
"200": {
"description": "200 response",
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"receivedHTTPRequestBody": {
"type": "string"
},
"userInfoMessage": {
"type": "string"
},
"graphClientMessage": {
"type": "object"
}
}
}
}
}
}
}
}
}
}
}