workos 1.4.0 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.rubocop.yml +1 -1
- data/.ruby-version +1 -1
- data/.semaphore/semaphore.yml +2 -2
- data/Gemfile.lock +3 -3
- data/lib/workos/client.rb +3 -6
- data/lib/workos/connection.rb +10 -2
- data/lib/workos/directory.rb +11 -3
- data/lib/workos/directory_sync.rb +29 -0
- data/lib/workos/directory_user.rb +4 -1
- data/lib/workos/errors.rb +4 -0
- data/lib/workos/organization.rb +10 -1
- data/lib/workos/organizations.rb +18 -4
- data/lib/workos/profile.rb +7 -2
- data/lib/workos/types/connection_struct.rb +3 -1
- data/lib/workos/types/directory_struct.rb +4 -2
- data/lib/workos/types/directory_user_struct.rb +1 -0
- data/lib/workos/types/organization_struct.rb +3 -0
- data/lib/workos/types/profile_struct.rb +1 -0
- data/lib/workos/types/webhook_struct.rb +14 -0
- data/lib/workos/types.rb +1 -0
- data/lib/workos/version.rb +1 -1
- data/lib/workos/webhook.rb +47 -0
- data/lib/workos/webhooks.rb +168 -0
- data/lib/workos.rb +3 -0
- data/spec/lib/workos/audit_trail_spec.rb +2 -0
- data/spec/lib/workos/directory_sync_spec.rb +64 -29
- data/spec/lib/workos/organizations_spec.rb +13 -11
- data/spec/lib/workos/passwordless_spec.rb +2 -0
- data/spec/lib/workos/portal_spec.rb +2 -0
- data/spec/lib/workos/sso_spec.rb +16 -12
- data/spec/lib/workos/webhooks_spec.rb +190 -0
- data/spec/spec_helper.rb +3 -0
- data/spec/support/fixtures/vcr_cassettes/{organization/update_invalid.yml → directory_sync/get_directory_with_invalid_id.yml} +35 -25
- data/spec/support/fixtures/vcr_cassettes/directory_sync/get_directory_with_valid_id.yml +84 -0
- data/spec/support/fixtures/vcr_cassettes/directory_sync/get_user.yml +40 -16
- data/spec/support/fixtures/vcr_cassettes/directory_sync/list_directories/with_after.yml +34 -22
- data/spec/support/fixtures/vcr_cassettes/directory_sync/list_directories/with_before.yml +36 -22
- data/spec/support/fixtures/vcr_cassettes/directory_sync/list_directories/with_domain.yml +30 -19
- data/spec/support/fixtures/vcr_cassettes/directory_sync/list_directories/with_limit.yml +31 -20
- data/spec/support/fixtures/vcr_cassettes/directory_sync/list_directories/with_no_options.yml +39 -21
- data/spec/support/fixtures/vcr_cassettes/directory_sync/list_directories/with_search.yml +32 -20
- data/spec/support/fixtures/vcr_cassettes/directory_sync/list_users/with_after.yml +128 -28
- data/spec/support/fixtures/vcr_cassettes/directory_sync/list_users/with_before.yml +31 -18
- data/spec/support/fixtures/vcr_cassettes/directory_sync/list_users/with_directory.yml +136 -35
- data/spec/support/fixtures/vcr_cassettes/directory_sync/list_users/with_group.yml +128 -18
- data/spec/support/fixtures/vcr_cassettes/directory_sync/list_users/with_limit.yml +131 -17
- data/spec/support/fixtures/vcr_cassettes/organization/create.yml +28 -16
- data/spec/support/fixtures/vcr_cassettes/organization/get.yml +27 -16
- data/spec/support/fixtures/vcr_cassettes/organization/list.yml +29 -14
- data/spec/support/fixtures/vcr_cassettes/organization/update.yml +27 -16
- data/spec/support/fixtures/vcr_cassettes/sso/get_connection_with_valid_id.yml +28 -16
- data/spec/support/fixtures/vcr_cassettes/sso/list_connections/with_after.yml +25 -15
- data/spec/support/fixtures/vcr_cassettes/sso/list_connections/with_before.yml +28 -15
- data/spec/support/fixtures/vcr_cassettes/sso/list_connections/with_connection_type.yml +31 -14
- data/spec/support/fixtures/vcr_cassettes/sso/list_connections/with_domain.yml +27 -13
- data/spec/support/fixtures/vcr_cassettes/sso/list_connections/with_limit.yml +24 -15
- data/spec/support/fixtures/vcr_cassettes/sso/list_connections/with_no_options.yml +30 -14
- data/spec/support/fixtures/vcr_cassettes/sso/list_connections/with_organization_id.yml +28 -14
- data/spec/support/fixtures/vcr_cassettes/sso/profile.yml +1 -1
- data/spec/support/profile.txt +1 -1
- data/spec/support/shared_examples/client_spec.rb +16 -0
- data/spec/support/webhook_payload.txt +1 -0
- metadata +16 -5
|
@@ -0,0 +1,190 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
# typed: false
|
|
3
|
+
|
|
4
|
+
require 'json'
|
|
5
|
+
require 'openssl'
|
|
6
|
+
|
|
7
|
+
describe WorkOS::Webhooks do
|
|
8
|
+
describe '.construct_event' do
|
|
9
|
+
before(:each) do
|
|
10
|
+
@payload = File.read("#{SPEC_ROOT}/support/webhook_payload.txt")
|
|
11
|
+
@secret = 'secret'
|
|
12
|
+
@timestamp = Time.at(Time.now.to_i * 1000)
|
|
13
|
+
unhashed_string = "#{@timestamp.to_i}.#{@payload}"
|
|
14
|
+
digest = OpenSSL::Digest.new('sha256')
|
|
15
|
+
@signature_hash = OpenSSL::HMAC.hexdigest(digest, @secret, unhashed_string)
|
|
16
|
+
@expectation = {
|
|
17
|
+
id: 'directory_user_01FAEAJCR3ZBZ30D8BD1924TVG',
|
|
18
|
+
state: 'active',
|
|
19
|
+
emails: [{
|
|
20
|
+
type: 'work',
|
|
21
|
+
value: 'blair@foo-corp.com',
|
|
22
|
+
primary: true,
|
|
23
|
+
}],
|
|
24
|
+
idp_id: '00u1e8mutl6wlH3lL4x7',
|
|
25
|
+
object: 'directory_user',
|
|
26
|
+
username: 'blair@foo-corp.com',
|
|
27
|
+
last_name: 'Lunceford',
|
|
28
|
+
first_name: 'Blair',
|
|
29
|
+
directory_id: 'directory_01F9M7F68PZP8QXP8G7X5QRHS7',
|
|
30
|
+
raw_attributes: {
|
|
31
|
+
name: {
|
|
32
|
+
givenName: 'Blair',
|
|
33
|
+
familyName: 'Lunceford',
|
|
34
|
+
middleName: 'Elizabeth',
|
|
35
|
+
honorificPrefix: 'Ms.',
|
|
36
|
+
},
|
|
37
|
+
title: 'Developer Success Engineer',
|
|
38
|
+
active: true,
|
|
39
|
+
emails: [{
|
|
40
|
+
type: 'work',
|
|
41
|
+
value: 'blair@foo-corp.com',
|
|
42
|
+
primary: true,
|
|
43
|
+
}],
|
|
44
|
+
groups: [],
|
|
45
|
+
locale: 'en-US',
|
|
46
|
+
schemas: [
|
|
47
|
+
'urn:ietf:params:scim:schemas:core:2.0:User',
|
|
48
|
+
'urn:ietf:params:scim:schemas:extension:enterprise:2.0:User'
|
|
49
|
+
],
|
|
50
|
+
userName: 'blair@foo-corp.com',
|
|
51
|
+
addresses: [{
|
|
52
|
+
region: 'CO',
|
|
53
|
+
primary: true,
|
|
54
|
+
locality: 'Steamboat Springs',
|
|
55
|
+
postalCode: '80487',
|
|
56
|
+
}],
|
|
57
|
+
externalId: '00u1e8mutl6wlH3lL4x7',
|
|
58
|
+
displayName: 'Blair Lunceford',
|
|
59
|
+
"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User": {
|
|
60
|
+
manager: {
|
|
61
|
+
value: '2',
|
|
62
|
+
displayName: 'Kathleen Chung',
|
|
63
|
+
},
|
|
64
|
+
division: 'Engineering',
|
|
65
|
+
department: 'Customer Success',
|
|
66
|
+
},
|
|
67
|
+
},
|
|
68
|
+
}
|
|
69
|
+
end
|
|
70
|
+
|
|
71
|
+
context 'with the correct payload, sig_header, and secret' do
|
|
72
|
+
it 'returns a webhook event' do
|
|
73
|
+
webhook = described_class.construct_event(
|
|
74
|
+
payload: @payload,
|
|
75
|
+
sig_header: "t=#{@timestamp.to_i}, v1=#{@signature_hash}",
|
|
76
|
+
secret: @secret,
|
|
77
|
+
)
|
|
78
|
+
|
|
79
|
+
expect(webhook.data).to eq(@expectation)
|
|
80
|
+
expect(webhook.event).to eq('dsync.user.created')
|
|
81
|
+
expect(webhook.id).to eq('wh_123')
|
|
82
|
+
end
|
|
83
|
+
end
|
|
84
|
+
|
|
85
|
+
context 'with the correct payload, sig_header, secret, and tolerance' do
|
|
86
|
+
it 'returns a webhook event' do
|
|
87
|
+
webhook = described_class.construct_event(
|
|
88
|
+
payload: @payload,
|
|
89
|
+
sig_header: "t=#{@timestamp.to_i}, v1=#{@signature_hash}",
|
|
90
|
+
secret: @secret,
|
|
91
|
+
tolerance: 300,
|
|
92
|
+
)
|
|
93
|
+
|
|
94
|
+
expect(webhook.data).to eq(@expectation)
|
|
95
|
+
expect(webhook.event).to eq('dsync.user.created')
|
|
96
|
+
expect(webhook.id).to eq('wh_123')
|
|
97
|
+
end
|
|
98
|
+
end
|
|
99
|
+
|
|
100
|
+
context 'with an empty header' do
|
|
101
|
+
it 'raises an error' do
|
|
102
|
+
expect do
|
|
103
|
+
described_class.construct_event(
|
|
104
|
+
payload: @payload,
|
|
105
|
+
sig_header: '',
|
|
106
|
+
secret: @secret,
|
|
107
|
+
)
|
|
108
|
+
end.to raise_error(
|
|
109
|
+
WorkOS::SignatureVerificationError,
|
|
110
|
+
'Unable to extract timestamp and signature hash from header',
|
|
111
|
+
)
|
|
112
|
+
end
|
|
113
|
+
end
|
|
114
|
+
|
|
115
|
+
context 'with an empty signature hash' do
|
|
116
|
+
it 'raises an error' do
|
|
117
|
+
expect do
|
|
118
|
+
described_class.construct_event(
|
|
119
|
+
payload: @payload,
|
|
120
|
+
sig_header: "t=#{@timestamp.to_i}, v1=",
|
|
121
|
+
secret: @secret,
|
|
122
|
+
)
|
|
123
|
+
end.to raise_error(
|
|
124
|
+
WorkOS::SignatureVerificationError,
|
|
125
|
+
'No signature hash found with expected scheme v1',
|
|
126
|
+
)
|
|
127
|
+
end
|
|
128
|
+
end
|
|
129
|
+
|
|
130
|
+
context 'with an incorrect signature hash' do
|
|
131
|
+
it 'raises an error' do
|
|
132
|
+
expect do
|
|
133
|
+
described_class.construct_event(
|
|
134
|
+
payload: @payload,
|
|
135
|
+
sig_header: "t=#{@timestamp.to_i}, v1=99999",
|
|
136
|
+
secret: @secret,
|
|
137
|
+
)
|
|
138
|
+
end.to raise_error(
|
|
139
|
+
WorkOS::SignatureVerificationError,
|
|
140
|
+
'Signature hash does not match the expected signature hash for payload',
|
|
141
|
+
)
|
|
142
|
+
end
|
|
143
|
+
end
|
|
144
|
+
|
|
145
|
+
context 'with an incorrect payload' do
|
|
146
|
+
it 'raises an error' do
|
|
147
|
+
expect do
|
|
148
|
+
described_class.construct_event(
|
|
149
|
+
payload: 'invalid',
|
|
150
|
+
sig_header: "t=#{@timestamp.to_i}, v1=#{@signature_hash}",
|
|
151
|
+
secret: @secret,
|
|
152
|
+
)
|
|
153
|
+
end.to raise_error(
|
|
154
|
+
WorkOS::SignatureVerificationError,
|
|
155
|
+
'Signature hash does not match the expected signature hash for payload',
|
|
156
|
+
)
|
|
157
|
+
end
|
|
158
|
+
end
|
|
159
|
+
|
|
160
|
+
context 'with an incorrect webhook secret' do
|
|
161
|
+
it 'raises an error' do
|
|
162
|
+
expect do
|
|
163
|
+
described_class.construct_event(
|
|
164
|
+
payload: @payload,
|
|
165
|
+
sig_header: "t=#{@timestamp.to_i}, v1=#{@signature_hash}",
|
|
166
|
+
secret: 'invalid',
|
|
167
|
+
)
|
|
168
|
+
end.to raise_error(
|
|
169
|
+
WorkOS::SignatureVerificationError,
|
|
170
|
+
'Signature hash does not match the expected signature hash for payload',
|
|
171
|
+
)
|
|
172
|
+
end
|
|
173
|
+
end
|
|
174
|
+
|
|
175
|
+
context 'with a timestamp outside tolerance' do
|
|
176
|
+
it 'raises an error' do
|
|
177
|
+
expect do
|
|
178
|
+
described_class.construct_event(
|
|
179
|
+
payload: @payload,
|
|
180
|
+
sig_header: "t=9999, v1=#{@signature_hash}",
|
|
181
|
+
secret: @secret,
|
|
182
|
+
)
|
|
183
|
+
end.to raise_error(
|
|
184
|
+
WorkOS::SignatureVerificationError,
|
|
185
|
+
'Timestamp outside the tolerance zone',
|
|
186
|
+
)
|
|
187
|
+
end
|
|
188
|
+
end
|
|
189
|
+
end
|
|
190
|
+
end
|
data/spec/spec_helper.rb
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
---
|
|
2
2
|
http_interactions:
|
|
3
3
|
- request:
|
|
4
|
-
method:
|
|
5
|
-
uri: https://api.workos.com/
|
|
4
|
+
method: get
|
|
5
|
+
uri: https://api.workos.com/directories/invalid
|
|
6
6
|
body:
|
|
7
|
-
encoding:
|
|
8
|
-
string: '
|
|
7
|
+
encoding: US-ASCII
|
|
8
|
+
string: ''
|
|
9
9
|
headers:
|
|
10
10
|
Content-Type:
|
|
11
11
|
- application/json
|
|
@@ -14,22 +14,22 @@ http_interactions:
|
|
|
14
14
|
Accept:
|
|
15
15
|
- "*/*"
|
|
16
16
|
User-Agent:
|
|
17
|
-
- WorkOS; ruby/3.0.
|
|
17
|
+
- WorkOS; ruby/3.0.2; x86_64-darwin19; v1.6.1
|
|
18
18
|
Authorization:
|
|
19
19
|
- Bearer <API_KEY>
|
|
20
20
|
response:
|
|
21
21
|
status:
|
|
22
|
-
code:
|
|
23
|
-
message:
|
|
22
|
+
code: 404
|
|
23
|
+
message: Not Found
|
|
24
24
|
headers:
|
|
25
|
-
|
|
26
|
-
-
|
|
25
|
+
Date:
|
|
26
|
+
- Sun, 07 Nov 2021 19:18:31 GMT
|
|
27
|
+
Content-Type:
|
|
28
|
+
- application/json; charset=utf-8
|
|
29
|
+
Transfer-Encoding:
|
|
30
|
+
- chunked
|
|
27
31
|
Connection:
|
|
28
32
|
- keep-alive
|
|
29
|
-
Vary:
|
|
30
|
-
- Origin, Accept-Encoding
|
|
31
|
-
Access-Control-Allow-Credentials:
|
|
32
|
-
- 'true'
|
|
33
33
|
Content-Security-Policy:
|
|
34
34
|
- 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self''
|
|
35
35
|
https: data:;frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src
|
|
@@ -52,22 +52,32 @@ http_interactions:
|
|
|
52
52
|
- no-referrer
|
|
53
53
|
X-Xss-Protection:
|
|
54
54
|
- '0'
|
|
55
|
+
Vary:
|
|
56
|
+
- Origin, Accept-Encoding
|
|
57
|
+
Access-Control-Allow-Credentials:
|
|
58
|
+
- 'true'
|
|
55
59
|
X-Request-Id:
|
|
56
|
-
-
|
|
57
|
-
Content-Type:
|
|
58
|
-
- application/json; charset=utf-8
|
|
59
|
-
Content-Length:
|
|
60
|
-
- '205'
|
|
60
|
+
-
|
|
61
61
|
Etag:
|
|
62
|
-
- W/"
|
|
63
|
-
Date:
|
|
64
|
-
- Wed, 05 May 2021 22:14:10 GMT
|
|
62
|
+
- W/"5d-Sx4XoCfDLxkGIc0yAjSbi2ILYww"
|
|
65
63
|
Via:
|
|
66
64
|
- 1.1 vegur
|
|
65
|
+
Cf-Cache-Status:
|
|
66
|
+
- DYNAMIC
|
|
67
|
+
Report-To:
|
|
68
|
+
- '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=9UGS4Swz%2BHWvLOf0MGTCQbJyS0uBKnB72E77LfjybUN%2FXbJaDPBYfHnAUcgVM7JZbTefNquu4bG0Fw0edgQVoGnTK9OWPuO6fVKmo8XkF1G%2FNgibe8B715ZZje%2FZM7m3%2B9bEbNout5ArQfFyyQ%3D%3D"}],"group":"cf-nel","max_age":604800}'
|
|
69
|
+
Nel:
|
|
70
|
+
- '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}'
|
|
71
|
+
Server:
|
|
72
|
+
- cloudflare
|
|
73
|
+
Cf-Ray:
|
|
74
|
+
- 6aa8e86f7b5a66bf-DFW
|
|
75
|
+
Alt-Svc:
|
|
76
|
+
- h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443";
|
|
77
|
+
ma=86400
|
|
67
78
|
body:
|
|
68
|
-
encoding:
|
|
69
|
-
string: '{"
|
|
70
|
-
Organization 2","domains":[{"object":"organization_domain","id":"org_domain_01F4Z9GY3089GV4SENXWZ9RBX1","domain":"example.com"}]}'
|
|
79
|
+
encoding: ASCII-8BIT
|
|
80
|
+
string: '{"message":"Directory not found: ''invalid''.","code":"entity_not_found","entity_id":"invalid"}'
|
|
71
81
|
http_version:
|
|
72
|
-
recorded_at:
|
|
82
|
+
recorded_at: Sun, 07 Nov 2021 19:18:31 GMT
|
|
73
83
|
recorded_with: VCR 5.0.0
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
---
|
|
2
|
+
http_interactions:
|
|
3
|
+
- request:
|
|
4
|
+
method: get
|
|
5
|
+
uri: https://api.workos.com/directories/directory_01FK17DWRHH7APAFXT5B52PV0W
|
|
6
|
+
body:
|
|
7
|
+
encoding: US-ASCII
|
|
8
|
+
string: ''
|
|
9
|
+
headers:
|
|
10
|
+
Content-Type:
|
|
11
|
+
- application/json
|
|
12
|
+
Accept-Encoding:
|
|
13
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
|
14
|
+
Accept:
|
|
15
|
+
- "*/*"
|
|
16
|
+
User-Agent:
|
|
17
|
+
- WorkOS; ruby/3.0.2; x86_64-darwin19; v1.6.1
|
|
18
|
+
Authorization:
|
|
19
|
+
- Bearer <API_KEY>
|
|
20
|
+
response:
|
|
21
|
+
status:
|
|
22
|
+
code: 200
|
|
23
|
+
message: OK
|
|
24
|
+
headers:
|
|
25
|
+
Date:
|
|
26
|
+
- Sun, 07 Nov 2021 19:18:31 GMT
|
|
27
|
+
Content-Type:
|
|
28
|
+
- application/json; charset=utf-8
|
|
29
|
+
Transfer-Encoding:
|
|
30
|
+
- chunked
|
|
31
|
+
Connection:
|
|
32
|
+
- keep-alive
|
|
33
|
+
Content-Security-Policy:
|
|
34
|
+
- 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self''
|
|
35
|
+
https: data:;frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src
|
|
36
|
+
''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests'
|
|
37
|
+
X-Dns-Prefetch-Control:
|
|
38
|
+
- 'off'
|
|
39
|
+
Expect-Ct:
|
|
40
|
+
- max-age=0
|
|
41
|
+
X-Frame-Options:
|
|
42
|
+
- SAMEORIGIN
|
|
43
|
+
Strict-Transport-Security:
|
|
44
|
+
- max-age=15552000; includeSubDomains
|
|
45
|
+
X-Download-Options:
|
|
46
|
+
- noopen
|
|
47
|
+
X-Content-Type-Options:
|
|
48
|
+
- nosniff
|
|
49
|
+
X-Permitted-Cross-Domain-Policies:
|
|
50
|
+
- none
|
|
51
|
+
Referrer-Policy:
|
|
52
|
+
- no-referrer
|
|
53
|
+
X-Xss-Protection:
|
|
54
|
+
- '0'
|
|
55
|
+
Vary:
|
|
56
|
+
- Origin, Accept-Encoding
|
|
57
|
+
Access-Control-Allow-Credentials:
|
|
58
|
+
- 'true'
|
|
59
|
+
X-Request-Id:
|
|
60
|
+
- c63229f4-faa3-4693-a769-f132af1d156e
|
|
61
|
+
Etag:
|
|
62
|
+
- W/"149-gnrinkKr5pyIOSLENIObBLph9N0"
|
|
63
|
+
Via:
|
|
64
|
+
- 1.1 vegur
|
|
65
|
+
Cf-Cache-Status:
|
|
66
|
+
- DYNAMIC
|
|
67
|
+
Report-To:
|
|
68
|
+
- '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=8pe6lAa%2BE5FfpwjmgW1wU%2Fn%2BqfVS0xUHV0FKT%2Fvt%2FpQCa1A4nNwqR1hMyE9ytoi%2F3InXs3rP9ELYw%2FpJZ1Ow0uaNd3xoll7al5maCCPI1JWivjr%2Bxx6G1Otiw5iTIaAh3MXoP0pjUAnZVsf4bw%3D%3D"}],"group":"cf-nel","max_age":604800}'
|
|
69
|
+
Nel:
|
|
70
|
+
- '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}'
|
|
71
|
+
Server:
|
|
72
|
+
- cloudflare
|
|
73
|
+
Cf-Ray:
|
|
74
|
+
- 6aa8e86daa570b76-DFW
|
|
75
|
+
Alt-Svc:
|
|
76
|
+
- h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443";
|
|
77
|
+
ma=86400
|
|
78
|
+
body:
|
|
79
|
+
encoding: ASCII-8BIT
|
|
80
|
+
string: '{"object":"directory","id":"directory_01FK17DWRHH7APAFXT5B52PV0W","organization_id":"org_01F6Q6TFP7RD2PF6J03ANNWDKV","name":"Testing
|
|
81
|
+
Active Attribute","external_key":"QArgyQQkq4G0MquM","type":"azure scim v2.0","state":"linked","created_at":"2021-10-27T15:55:47.856Z","updated_at":"2021-10-27T16:03:43.990Z","domain":"example.me"}'
|
|
82
|
+
http_version:
|
|
83
|
+
recorded_at: Sun, 07 Nov 2021 19:18:31 GMT
|
|
84
|
+
recorded_with: VCR 5.0.0
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
http_interactions:
|
|
3
3
|
- request:
|
|
4
4
|
method: get
|
|
5
|
-
uri: https://api.workos.com/directory_users/
|
|
5
|
+
uri: https://api.workos.com/directory_users/directory_user_01FAZYNPC8M0HRYTKFP2GNX852
|
|
6
6
|
body:
|
|
7
7
|
encoding: US-ASCII
|
|
8
8
|
string: ''
|
|
@@ -14,7 +14,7 @@ http_interactions:
|
|
|
14
14
|
Accept:
|
|
15
15
|
- "*/*"
|
|
16
16
|
User-Agent:
|
|
17
|
-
- WorkOS; ruby/
|
|
17
|
+
- WorkOS; ruby/3.0.1; x86_64-darwin19; v1.4.0
|
|
18
18
|
Authorization:
|
|
19
19
|
- Bearer <API_KEY>
|
|
20
20
|
response:
|
|
@@ -22,16 +22,26 @@ http_interactions:
|
|
|
22
22
|
code: 200
|
|
23
23
|
message: OK
|
|
24
24
|
headers:
|
|
25
|
-
|
|
26
|
-
-
|
|
25
|
+
Date:
|
|
26
|
+
- Mon, 09 Aug 2021 17:36:13 GMT
|
|
27
|
+
Content-Type:
|
|
28
|
+
- application/json; charset=utf-8
|
|
29
|
+
Transfer-Encoding:
|
|
30
|
+
- chunked
|
|
27
31
|
Connection:
|
|
28
32
|
- keep-alive
|
|
29
33
|
Vary:
|
|
30
34
|
- Origin, Accept-Encoding
|
|
31
35
|
Access-Control-Allow-Credentials:
|
|
32
36
|
- 'true'
|
|
37
|
+
Content-Security-Policy:
|
|
38
|
+
- 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self''
|
|
39
|
+
https: data:;frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src
|
|
40
|
+
''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests'
|
|
33
41
|
X-Dns-Prefetch-Control:
|
|
34
42
|
- 'off'
|
|
43
|
+
Expect-Ct:
|
|
44
|
+
- max-age=0
|
|
35
45
|
X-Frame-Options:
|
|
36
46
|
- SAMEORIGIN
|
|
37
47
|
Strict-Transport-Security:
|
|
@@ -40,23 +50,37 @@ http_interactions:
|
|
|
40
50
|
- noopen
|
|
41
51
|
X-Content-Type-Options:
|
|
42
52
|
- nosniff
|
|
53
|
+
X-Permitted-Cross-Domain-Policies:
|
|
54
|
+
- none
|
|
55
|
+
Referrer-Policy:
|
|
56
|
+
- no-referrer
|
|
43
57
|
X-Xss-Protection:
|
|
44
|
-
-
|
|
58
|
+
- '0'
|
|
45
59
|
X-Request-Id:
|
|
46
|
-
-
|
|
47
|
-
Content-Type:
|
|
48
|
-
- application/json; charset=utf-8
|
|
49
|
-
Content-Length:
|
|
50
|
-
- '368'
|
|
60
|
+
- 59862449-73e5-4dfd-93ab-3764b1917801
|
|
51
61
|
Etag:
|
|
52
|
-
- W/"
|
|
53
|
-
Date:
|
|
54
|
-
- Thu, 30 Apr 2020 04:43:14 GMT
|
|
62
|
+
- W/"4c3-Ikxt2N0fUuSxCjv+RdYvW8W9Xwo"
|
|
55
63
|
Via:
|
|
56
64
|
- 1.1 vegur
|
|
65
|
+
Cf-Cache-Status:
|
|
66
|
+
- DYNAMIC
|
|
67
|
+
Report-To:
|
|
68
|
+
- '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=m6%2FJ3BJ75VMwSOtfDQXjt%2FoL29FI%2Bv5VswhZzg6LVkOQi7nyI19Sks%2FkDGCDrSQ%2FMtyU6DI4OFWR9RB1I04IGdhehsY2oPGugIj%2BhHMiJdQEcE6vPAsuaF1HyVnXGvMgRYdurEW1Jr7rSYBWeA%3D%3D"}],"group":"cf-nel","max_age":604800}'
|
|
69
|
+
Nel:
|
|
70
|
+
- '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}'
|
|
71
|
+
Server:
|
|
72
|
+
- cloudflare
|
|
73
|
+
Cf-Ray:
|
|
74
|
+
- 67c2bed0ebe6c7e6-DFW
|
|
75
|
+
Alt-Svc:
|
|
76
|
+
- h3-27=":443"; ma=86400, h3-28=":443"; ma=86400, h3-29=":443"; ma=86400, h3=":443";
|
|
77
|
+
ma=86400
|
|
57
78
|
body:
|
|
58
|
-
encoding:
|
|
59
|
-
string: '{"
|
|
79
|
+
encoding: ASCII-8BIT
|
|
80
|
+
string: '{"object":"directory_user","id":"directory_user_01FAZYNPC8M0HRYTKFP2GNX852","directory_id":"directory_01FAZYMST676QMTFN1DDJZZX87","idp_id":"6092c280a3f1e19ef6d8cef8","username":"logan@workos.com","emails":[{"primary":true,"value":"logan@workos.com"}],"first_name":"Logan","last_name":"Gingerich","state":"active","raw_attributes":{"id":"6092c280a3f1e19ef6d8cef8","name":"Logan
|
|
81
|
+
Paul Gingerich","teams":["5f696c8e9a63a60e965aaca8"],"spokeId":null,"lastName":"Gingerich","createdAt":"2021-05-05T16:06:24+0000","firstName":"Logan","updatedAt":"2021-07-19T19:17:52+0000","workEmail":"logan@workos.com","department":"Infra","departmentId":"5f27ada9a5e9bc0001a0ae4a"},"custom_attributes":{"department":"Infra"},"groups":[{"object":"directory_group","id":"directory_group_01FAZYNN1NZWMBRAXXDSTB5NFH","directory_id":"directory_01FAZYMST676QMTFN1DDJZZX87","name":"Department
|
|
82
|
+
- Infra","raw_attributes":{"id":"5f27ada9a5e9bc0001a0ae4a","name":"Infra","parent":"5f27ada9a5e9bc0001a0ae48"}},{"object":"directory_group","id":"directory_group_01FAZYNNQ4HQ6EBF29MPTH7VKB","directory_id":"directory_01FAZYMST676QMTFN1DDJZZX87","name":"Team
|
|
83
|
+
- Platform","raw_attributes":{"id":"5f696c8e9a63a60e965aaca8","name":"Platform","parent":null}}]}'
|
|
60
84
|
http_version:
|
|
61
|
-
recorded_at:
|
|
85
|
+
recorded_at: Mon, 09 Aug 2021 17:36:13 GMT
|
|
62
86
|
recorded_with: VCR 5.0.0
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
http_interactions:
|
|
3
3
|
- request:
|
|
4
4
|
method: get
|
|
5
|
-
uri: https://api.workos.com/directories?after=
|
|
5
|
+
uri: https://api.workos.com/directories?after=directory_01FGCPNV312FHFRCX0BYWHVSE1
|
|
6
6
|
body:
|
|
7
7
|
encoding: US-ASCII
|
|
8
8
|
string: ''
|
|
@@ -14,7 +14,7 @@ http_interactions:
|
|
|
14
14
|
Accept:
|
|
15
15
|
- "*/*"
|
|
16
16
|
User-Agent:
|
|
17
|
-
- WorkOS; ruby/3.0.
|
|
17
|
+
- WorkOS; ruby/3.0.2; x86_64-darwin19; v1.6.0
|
|
18
18
|
Authorization:
|
|
19
19
|
- Bearer <API_KEY>
|
|
20
20
|
response:
|
|
@@ -22,14 +22,14 @@ http_interactions:
|
|
|
22
22
|
code: 200
|
|
23
23
|
message: OK
|
|
24
24
|
headers:
|
|
25
|
-
|
|
26
|
-
-
|
|
25
|
+
Date:
|
|
26
|
+
- Sun, 31 Oct 2021 23:16:20 GMT
|
|
27
|
+
Content-Type:
|
|
28
|
+
- application/json; charset=utf-8
|
|
29
|
+
Transfer-Encoding:
|
|
30
|
+
- chunked
|
|
27
31
|
Connection:
|
|
28
32
|
- keep-alive
|
|
29
|
-
Vary:
|
|
30
|
-
- Origin, Accept-Encoding
|
|
31
|
-
Access-Control-Allow-Credentials:
|
|
32
|
-
- 'true'
|
|
33
33
|
Content-Security-Policy:
|
|
34
34
|
- 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self''
|
|
35
35
|
https: data:;frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src
|
|
@@ -52,24 +52,36 @@ http_interactions:
|
|
|
52
52
|
- no-referrer
|
|
53
53
|
X-Xss-Protection:
|
|
54
54
|
- '0'
|
|
55
|
+
Vary:
|
|
56
|
+
- Origin, Accept-Encoding
|
|
57
|
+
Access-Control-Allow-Credentials:
|
|
58
|
+
- 'true'
|
|
55
59
|
X-Request-Id:
|
|
56
|
-
-
|
|
57
|
-
Content-Type:
|
|
58
|
-
- application/json; charset=utf-8
|
|
59
|
-
Content-Length:
|
|
60
|
-
- '784'
|
|
60
|
+
- 9b8b2fde-c533-499f-8255-ae5a38dec1c9
|
|
61
61
|
Etag:
|
|
62
|
-
- W/"
|
|
63
|
-
Date:
|
|
64
|
-
- Mon, 07 Jun 2021 17:55:30 GMT
|
|
62
|
+
- W/"57d-b8X7nQ95z8XcpGDAg30zxtq4cyU"
|
|
65
63
|
Via:
|
|
66
64
|
- 1.1 vegur
|
|
65
|
+
Cf-Cache-Status:
|
|
66
|
+
- DYNAMIC
|
|
67
|
+
Report-To:
|
|
68
|
+
- '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=bjisueAcX0y8T%2Bw7bzZ80xRsaJ5DYZJgfN2zGa5B24dZ%2BZPVtKMFVRMw4L9VpcpSuElvsrz9f503dDZJ46JT6sbHmUEE188lRzuHV1UC45wkzjRb%2B%2BMdPysI9473RJMX2ilURb2knzhC29H0YA%3D%3D"}],"group":"cf-nel","max_age":604800}'
|
|
69
|
+
Nel:
|
|
70
|
+
- '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}'
|
|
71
|
+
Server:
|
|
72
|
+
- cloudflare
|
|
73
|
+
Cf-Ray:
|
|
74
|
+
- 6a7097287c0866e3-DFW
|
|
75
|
+
Alt-Svc:
|
|
76
|
+
- h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443";
|
|
77
|
+
ma=86400
|
|
67
78
|
body:
|
|
68
|
-
encoding:
|
|
69
|
-
string: '{"object":"list","
|
|
70
|
-
Test","external_key":"
|
|
71
|
-
|
|
72
|
-
|
|
79
|
+
encoding: ASCII-8BIT
|
|
80
|
+
string: '{"object":"list","data":[{"object":"directory","id":"directory_01FK3HFFGMC2WF32RR8SKWC8KA","organization_id":"org_01FHRF60X0CDBB8F6A0YGSJJ2B","name":"Azure
|
|
81
|
+
Set Up Test","external_key":"Ii2mw43BMAIqiKuA","type":"azure scim v2.0","state":"linked","created_at":"2021-10-28T13:29:54.451Z","updated_at":"2021-10-28T13:32:03.737Z"},{"object":"directory","id":"directory_01FK17DWRHH7APAFXT5B52PV0W","organization_id":"org_01F6Q6TFP7RD2PF6J03ANNWDKV","name":"Testing
|
|
82
|
+
Active Attribute","external_key":"QArgyQQkq4G0MquM","type":"azure scim v2.0","state":"linked","created_at":"2021-10-27T15:55:47.856Z","updated_at":"2021-10-27T16:03:43.990Z","domain":"example.me"},{"object":"directory","id":"directory_01FHZKS052FGZQQCZHAX0E4AC0","organization_id":"org_01FHRF60X0CDBB8F6A0YGSJJ2B","name":"Okta
|
|
83
|
+
SCIM Test","external_key":"z76YkVQ9vEK0AUyy","type":"okta scim v2.0","state":"linked","created_at":"2021-10-14T14:37:24.004Z","updated_at":"2021-10-27T15:50:21.248Z"},{"object":"directory","id":"directory_01FGCQE0KD0V01GB46NJ7871F7","organization_id":"org_01FGCPJPQ35DR0WGGGBEC2V1GN","name":"Azure
|
|
84
|
+
Test","external_key":"S16nSw4AaAyW06ia","type":"azure scim v2.0","state":"linked","created_at":"2021-09-24T20:20:02.285Z","updated_at":"2021-10-27T15:50:21.579Z"}],"list_metadata":{"before":"directory_01FGCQE0KD0V01GB46NJ7871F7","after":null},"listMetadata":{"before":"directory_01FGCQE0KD0V01GB46NJ7871F7","after":null}}'
|
|
73
85
|
http_version:
|
|
74
|
-
recorded_at:
|
|
86
|
+
recorded_at: Sun, 31 Oct 2021 23:16:20 GMT
|
|
75
87
|
recorded_with: VCR 5.0.0
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
http_interactions:
|
|
3
3
|
- request:
|
|
4
4
|
method: get
|
|
5
|
-
uri: https://api.workos.com/directories?before=
|
|
5
|
+
uri: https://api.workos.com/directories?before=directory_01FGCPNV312FHFRCX0BYWHVSE1
|
|
6
6
|
body:
|
|
7
7
|
encoding: US-ASCII
|
|
8
8
|
string: ''
|
|
@@ -14,7 +14,7 @@ http_interactions:
|
|
|
14
14
|
Accept:
|
|
15
15
|
- "*/*"
|
|
16
16
|
User-Agent:
|
|
17
|
-
- WorkOS; ruby/3.0.
|
|
17
|
+
- WorkOS; ruby/3.0.2; x86_64-darwin19; v1.6.0
|
|
18
18
|
Authorization:
|
|
19
19
|
- Bearer <API_KEY>
|
|
20
20
|
response:
|
|
@@ -22,14 +22,14 @@ http_interactions:
|
|
|
22
22
|
code: 200
|
|
23
23
|
message: OK
|
|
24
24
|
headers:
|
|
25
|
-
|
|
26
|
-
-
|
|
25
|
+
Date:
|
|
26
|
+
- Sun, 31 Oct 2021 23:16:19 GMT
|
|
27
|
+
Content-Type:
|
|
28
|
+
- application/json; charset=utf-8
|
|
29
|
+
Transfer-Encoding:
|
|
30
|
+
- chunked
|
|
27
31
|
Connection:
|
|
28
32
|
- keep-alive
|
|
29
|
-
Vary:
|
|
30
|
-
- Origin, Accept-Encoding
|
|
31
|
-
Access-Control-Allow-Credentials:
|
|
32
|
-
- 'true'
|
|
33
33
|
Content-Security-Policy:
|
|
34
34
|
- 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self''
|
|
35
35
|
https: data:;frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src
|
|
@@ -52,24 +52,38 @@ http_interactions:
|
|
|
52
52
|
- no-referrer
|
|
53
53
|
X-Xss-Protection:
|
|
54
54
|
- '0'
|
|
55
|
+
Vary:
|
|
56
|
+
- Origin, Accept-Encoding
|
|
57
|
+
Access-Control-Allow-Credentials:
|
|
58
|
+
- 'true'
|
|
55
59
|
X-Request-Id:
|
|
56
|
-
-
|
|
57
|
-
Content-Type:
|
|
58
|
-
- application/json; charset=utf-8
|
|
59
|
-
Content-Length:
|
|
60
|
-
- '71'
|
|
60
|
+
- f6691c56-0bec-4224-b82c-ca59bab86bfc
|
|
61
61
|
Etag:
|
|
62
|
-
- W/"
|
|
63
|
-
Date:
|
|
64
|
-
- Mon, 07 Jun 2021 17:55:30 GMT
|
|
62
|
+
- W/"7fd-djK1P4BOpjA1geoLytAYBJmPVUE"
|
|
65
63
|
Via:
|
|
66
64
|
- 1.1 vegur
|
|
65
|
+
Cf-Cache-Status:
|
|
66
|
+
- DYNAMIC
|
|
67
|
+
Report-To:
|
|
68
|
+
- '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=QqBEPSIOhswfJhIT0bQZkAmYAUYn4aciBJ0IqnBShioQo9rrCjEqe7v0ZLpVdPgxr7acbaWOaHuUZZM3gdx1ad7S5TDNP5sMWZJCRhwBG9qxX2A678OHDThvHQQqHSFjUq7CKfKt%2F3h%2FAOKRZA%3D%3D"}],"group":"cf-nel","max_age":604800}'
|
|
69
|
+
Nel:
|
|
70
|
+
- '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}'
|
|
71
|
+
Server:
|
|
72
|
+
- cloudflare
|
|
73
|
+
Cf-Ray:
|
|
74
|
+
- 6a709726ea2966dd-DFW
|
|
75
|
+
Alt-Svc:
|
|
76
|
+
- h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443";
|
|
77
|
+
ma=86400
|
|
67
78
|
body:
|
|
68
|
-
encoding:
|
|
69
|
-
string: '{"object":"list","
|
|
70
|
-
Test","external_key":"
|
|
71
|
-
|
|
72
|
-
|
|
79
|
+
encoding: ASCII-8BIT
|
|
80
|
+
string: '{"object":"list","data":[{"object":"directory","id":"directory_01FG7FERZ204FKVG0YJA2CKFNG","organization_id":"org_01FG52B571GYMYNX3JNY5X3QAK","name":"Azure
|
|
81
|
+
Test","external_key":"UtCjmfF8gmEiOU0O","type":"azure scim v2.0","state":"linked","created_at":"2021-09-22T19:24:26.462Z","updated_at":"2021-10-27T15:50:20.636Z","domain":"example.com"},{"object":"directory","id":"directory_01FG226GXGR369PTWYGFNDWR9D","organization_id":"org_01FCPEJXEZR4DSBA625YMGQT9N","name":"JumpCloud
|
|
82
|
+
Test","external_key":"NRgx1V0pe8m4ai6u","type":"generic scim v2.0","state":"linked","created_at":"2021-09-20T16:56:32.434Z","updated_at":"2021-10-27T15:50:20.888Z","domain":"example.io"},{"object":"directory","id":"directory_01FFR1120F90Z4YJC29JT37VK0","organization_id":"org_01F8873JSZWN1MJCDN537FEK1H","name":"Azure","external_key":"rAaT6GNCDuyyYkKq","type":"azure
|
|
83
|
+
scim v2.0","state":"linked","created_at":"2021-09-16T19:23:40.419Z","updated_at":"2021-10-27T15:50:19.998Z"},{"object":"directory","id":"directory_01FE1VTQYEQF7S3T2G0R2MFHN9","organization_id":"org_01FCPEJXEZR4DSBA625YMGQT9N","name":"Okta
|
|
84
|
+
SCIM test","external_key":"JCik62hLK6CA804q","type":"okta scim v2.0","state":"linked","created_at":"2021-08-26T18:33:51.309Z","updated_at":"2021-10-27T15:50:19.921Z","domain":"example.io"},{"object":"directory","id":"directory_01FCV1FRW3D93X8VBZBCAQWEVS","organization_id":"org_01F9293WD2PDEEV4Y625XPZVG7","name":"Testing","external_key":"p2TZ3heuEoyU2kWk","type":"azure
|
|
85
|
+
scim v2.0","state":"linked","created_at":"2021-08-11T16:42:20.416Z","updated_at":"2021-10-27T15:50:19.430Z","domain":"foo-corp.com"},{"object":"directory","id":"directory_01F9M7F68PZP8QXP8G7X5QRHS7","organization_id":"org_01F8873JSZWN1MJCDN537FEK1H","name":"Example
|
|
86
|
+
Directory","external_key":"houUTobogoaaI0A0","type":"okta scim v2.0","state":"linked","created_at":"2021-07-02T18:25:06.343Z","updated_at":"2021-10-27T15:50:14.624Z"}],"list_metadata":{"before":null,"after":"directory_01FG7FERZ204FKVG0YJA2CKFNG"},"listMetadata":{"before":null,"after":"directory_01FG7FERZ204FKVG0YJA2CKFNG"}}'
|
|
73
87
|
http_version:
|
|
74
|
-
recorded_at:
|
|
88
|
+
recorded_at: Sun, 31 Oct 2021 23:16:19 GMT
|
|
75
89
|
recorded_with: VCR 5.0.0
|