-
Notifications
You must be signed in to change notification settings - Fork 5
/
assigned-users.raml
113 lines (110 loc) · 3.82 KB
/
assigned-users.raml
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
#%RAML 1.0
title: mod-kb-ebsco-java
baseUri: https://github.com/folio-org/mod-kb-ebsco-java
protocols: [ HTTPS ]
version: v1
mediaType: "application/vnd.api+json"
documentation:
- title: mod-kb-ebsco-java
content: Implements the eholdings interface using EBSCO KB as backend.
types:
assignedUserId: !include types/assignedUsers/assignedUserId.json
assignedUserCollection: !include types/assignedUsers/assignedUserCollection.json
assignedUserPostRequest: !include types/assignedUsers/assignedUserPostRequest.json
jsonapiError: !include types/jsonapiError.json
/eholdings/kb-credentials/{id}/users:
displayName: Users assigned to KB Credentials
uriParameters:
id:
pattern : "^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-5][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}$"
get:
description: Retrieve users information assigned to a specific KB credentials.
responses:
200:
description: OK
body:
application/vnd.api+json:
type: assignedUserCollection
example:
strict: false
value: !include examples/assignedUsers/assigned_users_get_200_response.json
400:
description: Bad Request
body:
application/vnd.api+json:
type: jsonapiError
example:
strict: false
value: !include examples/assignedUsers/assigned_users_get_400_response.json
post:
description: Assign user to a specific KB credentials.
headers:
Content-Type:
example: application/vnd.api+json
body:
application/vnd.api+json:
description: Assign user to KB credentials
type: assignedUserPostRequest
example:
strict: false
value: !include examples/assignedUsers/assigned_users_post_request.json
responses:
201:
description: Created
body:
application/vnd.api+json:
description: The server has successfully fulfilled the POST request.
type: assignedUserId
example:
strict: false
value: !include examples/assignedUsers/assigned_users_post_201_response.json
400:
description: Bad Request
body:
application/vnd.api+json:
type: jsonapiError
example:
strict: false
value: !include examples/assignedUsers/assigned_users_post_400_response.json
404:
description: Not Found
body:
application/vnd.api+json:
type: jsonapiError
example:
strict: false
value: !include examples/assignedUsers/assigned_users_post_404_response.json
422:
description: Unprocessable Entity
body:
application/vnd.api+json:
type: jsonapiError
example:
strict: false
value: !include examples/assignedUsers/assigned_users_post_422_response.json
/{userId}:
displayName: Particular user assigned to KB Credentials
uriParameters:
userId:
pattern : "^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-5][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}$"
delete:
description: Remove association between user and KB Credentials
responses:
204:
description: No Content
404:
description: Not Found
body:
application/vnd.api+json:
type: jsonapiError
example:
strict: false
value: !include examples/assignedUsers/assigned_users_delete_404_response.json
400:
description: Bad Request
body:
application/vnd.api+json:
type: jsonapiError
example:
strict: false
value: !include examples/assignedUsers/assigned_users_delete_400_response.json