-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbulk.yaml
56 lines (56 loc) · 1.42 KB
/
bulk.yaml
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
swagger: '2.0'
info:
description: SCIM 2.0 /Bulk endpoint
version: '1.0'
title: /Bulk Endpoint Swagger Definition
contact:
name: WSO2 Identity Server Team
url: 'http://wso2.com'
license:
name: Apache 2.0
url: 'http://www.apache.org/licenses/LICENSE-2.0'
basePath: /scim/v2/Bulk
tags:
- name: scimv2Bulk
paths:
/scim/v2/Bulk:
post:
tags:
- scimv2Bulk
summary: Return the bulk which was created.
description: Returns HTTP 201 if the bulk is successfully created.
operationId: createBulk
consumes:
- application/scim+json
produces:
- application/json
- application/scim+json
parameters:
- name: attributes
in: query
description: SCIM defined attributes parameter.
required: false
type: array
uniqueItems: true
collectionFormat: csv
items:
type: string
- name: excludedAttributes
in: query
description: SCIM defined excludedAttribute parameter.
required: false
type: array
uniqueItems: true
collectionFormat: csv
items:
type: string
- in: body
name: body
required: false
schema:
type: string
responses:
'200':
description: Valid bulk is created
'404':
description: Bulk is not found