-
Notifications
You must be signed in to change notification settings - Fork 0
/
api-defnitions.json
49 lines (48 loc) · 1.29 KB
/
api-defnitions.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
39
40
41
42
43
44
45
46
47
48
49
{
"data": [
{
"type": "API",
"attributes": {
"name": "Authorization API",
"description": "The Authorization API is used to request signed JSON Web Tokens to access Openbridge APIs",
"base_href": "https://authentication.api.openbridge.io",
"endpoints": [
{
"type": "Endpoint",
"attributes": {
"method": "POST",
"path": "/auth/jwt",
"request": {
"payload_schema": {
"data": {
"type": "APIAuth",
"attributes": {
"refresh_token": "string"
}
}
}
},
"responses": [
{
"type": "Response",
"attributes": {
"description": "",
"status_code": 202,
"response_schema": {
"data": {
"attributes": {
"token": "string",
"expires_at": "float"
}
}
}
}
}
]
}
}
]
}
}
]
}