-
Notifications
You must be signed in to change notification settings - Fork 93
/
Copy pathsecurity.get_service_accounts.json
46 lines (46 loc) · 1.19 KB
/
security.get_service_accounts.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
{
"security.get_service_accounts": {
"documentation": {
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/current/security-api-get-service-accounts.html",
"description": "Retrieves information about service accounts."
},
"stability": "stable",
"visibility": "public",
"headers": {
"accept": ["application/json"]
},
"url": {
"paths": [
{
"path": "/_security/service/{namespace}/{service}",
"methods": ["GET"],
"parts": {
"namespace": {
"type": "string",
"description": "An identifier for the namespace"
},
"service": {
"type": "string",
"description": "An identifier for the service name"
}
}
},
{
"path": "/_security/service/{namespace}",
"methods": ["GET"],
"parts": {
"namespace": {
"type": "string",
"description": "An identifier for the namespace"
}
}
},
{
"path": "/_security/service",
"methods": ["GET"]
}
]
},
"params": {}
}
}