-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathfincConfigEZBCredentials.raml
50 lines (45 loc) · 1.59 KB
/
fincConfigEZBCredentials.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
#%RAML 1.0
title: Finc Config EZB Credentials
version: v1
baseUri: http://github.com/org/folio/mod-finc-config
documentation:
- title: mod-finc-config EZB Credentials API
content: This documents the API calls that can be made to query and manage EZB credentials for all tenants/isils
types:
credential: !include schemas/ezbCredential.json
credentials: !include schemas/ezbCredentials.json
errors: !include raml-util/schemas/errors.schema
traits:
pageable: !include raml-util/traits/pageable.raml
searchable: !include raml-util/traits/searchable.raml
validate: !include raml-util/traits/validation.raml
resourceTypes:
collection: !include raml-util/rtypes/collection.raml
collection-item: !include raml-util/rtypes/item-collection.raml
/finc-config/ezb-credentials:
type:
collection:
exampleCollection: !include examples/fincConfigEZBCredentialCollection.sample
exampleItem: !include examples/fincConfigEZBCredential.sample
schemaCollection: credentials
schemaItem: credential
get:
is: [
searchable: {description: "", example: ""},
pageable
]
description: Return a list of ezb credentials (credentials of all tenants)
post:
is: [validate]
description: Create an ezb credential
/{isil}:
type:
collection-item:
exampleItem: !include examples/fincConfigEZBCredential.sample
schema: credential
get:
description: Get one ezb credentials entry by isil
delete:
description: Delete an ezb credentials entry identified by isil
put:
description: Put an ezb credentials entry identified by isil