@connectid-tools/rp-nodejs-sdk 4.2.1 → 5.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.
Files changed (97) hide show
  1. package/README.md +60 -71
  2. package/package.json +4 -5
  3. package/{config.js → src/config.js} +2 -31
  4. package/src/conformance/api/conformance-api.d.ts +38 -0
  5. package/src/conformance/api/conformance-api.js +53 -0
  6. package/src/conformance/config.json +60 -0
  7. package/src/conformance/conformance-config.d.ts +2 -0
  8. package/src/conformance/conformance-config.js +34 -0
  9. package/src/conformance/conformance.test.js +101 -0
  10. package/src/conformance/variant.json +1 -0
  11. package/src/crypto/crypto-loader.d.ts +32 -0
  12. package/src/crypto/crypto-loader.js +49 -0
  13. package/src/crypto/jwt-helper.d.ts +61 -0
  14. package/src/crypto/jwt-helper.js +92 -0
  15. package/src/crypto/pkce-helper.d.ts +43 -0
  16. package/src/crypto/pkce-helper.js +75 -0
  17. package/src/endpoints/participants-endpoint.d.ts +55 -0
  18. package/src/endpoints/participants-endpoint.js +137 -0
  19. package/src/endpoints/pushed-authorisation-request-endpoint.d.ts +87 -0
  20. package/src/endpoints/pushed-authorisation-request-endpoint.js +192 -0
  21. package/src/endpoints/retrieve-token-endpoint.d.ts +66 -0
  22. package/src/endpoints/retrieve-token-endpoint.js +159 -0
  23. package/src/endpoints/userinfo-endpoint.d.ts +24 -0
  24. package/src/endpoints/userinfo-endpoint.js +50 -0
  25. package/src/fapi/fapi-utils.d.ts +6 -0
  26. package/src/fapi/fapi-utils.js +9 -0
  27. package/src/http/http-client-extensions.d.ts +60 -0
  28. package/src/http/http-client-extensions.js +106 -0
  29. package/src/http/http-client-factory.d.ts +27 -0
  30. package/src/http/http-client-factory.js +45 -0
  31. package/src/integration/integration.test.d.ts +1 -0
  32. package/src/integration/integration.test.js +30 -0
  33. package/src/model/callback-params.d.ts +31 -0
  34. package/src/model/callback-params.js +1 -0
  35. package/src/model/claims.d.ts +100 -0
  36. package/src/model/claims.js +1 -0
  37. package/src/model/consolidated-token-set.d.ts +74 -0
  38. package/src/model/consolidated-token-set.js +100 -0
  39. package/src/model/discovery-service.d.ts +46 -0
  40. package/src/model/discovery-service.js +112 -0
  41. package/src/model/issuer-metadata.d.ts +165 -0
  42. package/src/model/issuer-metadata.js +1 -0
  43. package/src/model/jwks.d.ts +12 -0
  44. package/src/model/jwks.js +1 -0
  45. package/src/model/token-response.d.ts +31 -0
  46. package/src/model/token-response.js +1 -0
  47. package/src/model/token-set.d.ts +73 -0
  48. package/src/model/token-set.js +179 -0
  49. package/src/relying-party-client-sdk.d.ts +68 -0
  50. package/src/relying-party-client-sdk.js +150 -0
  51. package/src/test-data/large-participants-test-data.d.ts +865 -0
  52. package/src/test-data/large-participants-test-data.js +18907 -0
  53. package/src/test-data/participants-test-data.d.ts +149 -0
  54. package/src/test-data/participants-test-data.js +458 -0
  55. package/src/test-data/sandbox-participants-test-data.d.ts +865 -0
  56. package/src/test-data/sandbox-participants-test-data.js +3794 -0
  57. package/src/tests/cert-utils.test.d.ts +1 -0
  58. package/src/tests/cert-utils.test.js +13 -0
  59. package/src/tests/functional-utils.test.d.ts +1 -0
  60. package/src/tests/functional-utils.test.js +13 -0
  61. package/src/tests/participant-filters.test.d.ts +1 -0
  62. package/src/tests/participant-filters.test.js +151 -0
  63. package/src/tests/pushed-authorisation-request-endpoint.test.d.ts +1 -0
  64. package/src/tests/pushed-authorisation-request-endpoint.test.js +159 -0
  65. package/src/tests/relying-party-client-sdk.test.d.ts +1 -0
  66. package/src/tests/relying-party-client-sdk.test.js +313 -0
  67. package/src/tests/request-utils.test.d.ts +1 -0
  68. package/src/tests/request-utils.test.js +16 -0
  69. package/src/tests/system-information.test.d.ts +1 -0
  70. package/src/tests/system-information.test.js +16 -0
  71. package/src/tests/user-agent.test.d.ts +1 -0
  72. package/src/tests/user-agent.test.js +23 -0
  73. package/src/tests/validator.test.d.ts +1 -0
  74. package/src/tests/validator.test.js +38 -0
  75. package/{types.d.ts → src/types.d.ts} +61 -32
  76. package/src/types.js +1 -0
  77. package/{utils → src/utils}/request-utils.d.ts +1 -1
  78. package/src/utils/request-utils.js +8 -0
  79. package/{utils → src/utils}/user-agent.d.ts +1 -1
  80. package/{utils → src/utils}/user-agent.js +1 -1
  81. package/relying-party-client-sdk.d.ts +0 -37
  82. package/relying-party-client-sdk.js +0 -364
  83. package/utils/request-utils.js +0 -8
  84. /package/{config.d.ts → src/config.d.ts} +0 -0
  85. /package/{types.js → src/conformance/conformance.test.d.ts} +0 -0
  86. /package/{filter → src/filter}/participant-filters.d.ts +0 -0
  87. /package/{filter → src/filter}/participant-filters.js +0 -0
  88. /package/{logger.d.ts → src/logger.d.ts} +0 -0
  89. /package/{logger.js → src/logger.js} +0 -0
  90. /package/{utils → src/utils}/cert-utils.d.ts +0 -0
  91. /package/{utils → src/utils}/cert-utils.js +0 -0
  92. /package/{utils → src/utils}/functional-utils.d.ts +0 -0
  93. /package/{utils → src/utils}/functional-utils.js +0 -0
  94. /package/{utils → src/utils}/system-information.d.ts +0 -0
  95. /package/{utils → src/utils}/system-information.js +0 -0
  96. /package/{validator.d.ts → src/validator.d.ts} +0 -0
  97. /package/{validator.js → src/validator.js} +0 -0
@@ -0,0 +1,3794 @@
1
+ export const sandboxParticipantsTestData = [
2
+ {
3
+ "OrganisationId": "7c26ccac-490a-4c26-92fc-125fa2ab3509",
4
+ "Status": "Active",
5
+ "OrganisationName": "Test - IDP Org 3 - Fallback Billing Test",
6
+ "CreatedOn": "2022-12-18T21:44:39.733Z",
7
+ "LegalEntityName": "Test - IDP Org 3 - Fallback Billing Test",
8
+ "CountryOfRegistration": "AU",
9
+ "CompanyRegister": "ABN",
10
+ "Tag": [],
11
+ "Size": "",
12
+ "RegistrationNumber": "98765432123",
13
+ "RegistrationId": null,
14
+ "RegisteredName": "Test - IDP Org 3 - Fallback Billing Test",
15
+ "AddressLine1": "Level 1",
16
+ "AddressLine2": "255 George St",
17
+ "City": "Sydney",
18
+ "Postcode": "2000",
19
+ "Country": "AU",
20
+ "ParentOrganisationReference": "",
21
+ "AuthorisationServers": [
22
+ {
23
+ "AuthorisationServerId": "54f62daf-2ddc-4544-8455-d61bb4a34903",
24
+ "AutoRegistrationSupported": false,
25
+ "AutoRegistrationNotificationWebhook": null,
26
+ "SupportsCiba": false,
27
+ "SupportsDCR": false,
28
+ "SupportsRedirect": false,
29
+ "ApiResources": [],
30
+ "AuthorisationServerCertifications": [],
31
+ "CustomerFriendlyDescription": "Testing - Billing Fallback Provider",
32
+ "CustomerFriendlyLogoUri": "https://auth.bank1.directory.sandbox.connectid.com.au/logo.svg",
33
+ "CustomerFriendlyName": "Test - Billing Fallback Provider Testing",
34
+ "DeveloperPortalUri": null,
35
+ "TermsOfServiceUri": null,
36
+ "NotificationWebhookAddedDate": null,
37
+ "OpenIDDiscoveryDocument": "https://apse-saas-dobs-idp.identityx-cloud.com/auth/realms/connectidtesting/.well-known/openid-configuration",
38
+ "Issuer": "https://apse-saas-dobs-idp.identityx-cloud.com/auth/realms/connectidtesting",
39
+ "PayloadSigningCertLocationUri": "https://auth.bank1.directory.sandbox.connectid.com.au/na",
40
+ "CreatedAt": 1679269805,
41
+ "ParentAuthorisationServerId": null,
42
+ "DeprecatedDate": null,
43
+ "RetirementDate": null,
44
+ "SupersededByAuthorisationServerId": null
45
+ }
46
+ ],
47
+ "OrgDomainClaims": [
48
+ {
49
+ "AuthorisationDomainName": "connectID",
50
+ "AuthorityName": "connectID",
51
+ "RegistrationId": "connectID",
52
+ "Status": "Active"
53
+ }
54
+ ],
55
+ "OrgDomainRoleClaims": [
56
+ {
57
+ "Status": "Active",
58
+ "AuthorisationDomain": "connectID",
59
+ "Role": "RP-CORE",
60
+ "Authorisations": [],
61
+ "RegistrationId": "RP-CORE",
62
+ "RoleType": "Federation",
63
+ "Exclusive": false,
64
+ "Metadata": [
65
+ {
66
+ "MetadataId": "109bcd54-2914-4f98-90b9-be2647819e7f",
67
+ "DomainRoleName": "RP-CORE",
68
+ "Type": "claim",
69
+ "Name": "email"
70
+ },
71
+ {
72
+ "MetadataId": "0cd7452d-6b6d-4151-b756-c99a2cfac609",
73
+ "DomainRoleName": "RP-CORE",
74
+ "Type": "claim",
75
+ "Name": "phone_number"
76
+ },
77
+ {
78
+ "MetadataId": "261ec1fa-a6fb-46cc-acb7-7faa0412f22a",
79
+ "DomainRoleName": "RP-CORE",
80
+ "Type": "claim",
81
+ "Name": "middle_name"
82
+ },
83
+ {
84
+ "MetadataId": "8872dc8d-4271-458b-b73c-7ce91b7de552",
85
+ "DomainRoleName": "RP-CORE",
86
+ "Type": "claim",
87
+ "Name": "address"
88
+ },
89
+ {
90
+ "MetadataId": "15fcc989-1bb6-4c87-ac3d-77bda8eb34da",
91
+ "DomainRoleName": "RP-CORE",
92
+ "Type": "claim",
93
+ "Name": "name"
94
+ },
95
+ {
96
+ "MetadataId": "15a13e15-cf43-41dd-9661-7a14996900ca",
97
+ "DomainRoleName": "RP-CORE",
98
+ "Type": "claim",
99
+ "Name": "family_name"
100
+ },
101
+ {
102
+ "MetadataId": "14f5947c-1172-49a8-a04c-8e4f89fd4503",
103
+ "DomainRoleName": "RP-CORE",
104
+ "Type": "scope",
105
+ "Name": "openid"
106
+ },
107
+ {
108
+ "MetadataId": "d15dc17f-8588-431c-a66d-82946d009107",
109
+ "DomainRoleName": "RP-CORE",
110
+ "Type": "grant_type",
111
+ "Name": "authorization_code"
112
+ },
113
+ {
114
+ "MetadataId": "c5414d68-ef52-41e6-a127-762dfae96e4e",
115
+ "DomainRoleName": "RP-CORE",
116
+ "Type": "claim",
117
+ "Name": "given_name"
118
+ },
119
+ {
120
+ "MetadataId": "e94b2480-f774-4858-b680-5acf24afbdb5",
121
+ "DomainRoleName": "RP-CORE",
122
+ "Type": "claim",
123
+ "Name": "birthdate"
124
+ },
125
+ {
126
+ "MetadataId": "6201486b-120f-4f95-b1c8-1b0fa0d71056",
127
+ "DomainRoleName": "RP-CORE",
128
+ "Type": "claim",
129
+ "Name": "txn"
130
+ },
131
+ {
132
+ "MetadataId": "ec9bbff4-4486-4f2f-bf0d-9d652b899542",
133
+ "DomainRoleName": "RP-CORE",
134
+ "Type": "response_type",
135
+ "Name": "code"
136
+ }
137
+ ]
138
+ },
139
+ {
140
+ "Status": "Active",
141
+ "AuthorisationDomain": "connectID",
142
+ "Role": "IDP",
143
+ "Authorisations": [],
144
+ "RegistrationId": "IDP",
145
+ "RoleType": "Directory",
146
+ "Exclusive": false,
147
+ "Metadata": []
148
+ }
149
+ ]
150
+ },
151
+ {
152
+ "OrganisationId": "3a402bdd-d768-423b-a8f2-3d760c82092f",
153
+ "Status": "Active",
154
+ "OrganisationName": "Versent",
155
+ "CreatedOn": "2022-10-13T03:56:47.022Z",
156
+ "LegalEntityName": "Versent",
157
+ "CountryOfRegistration": "AU",
158
+ "CompanyRegister": "ABN",
159
+ "Tag": [],
160
+ "Size": "",
161
+ "RegistrationNumber": "78 600 701 764",
162
+ "RegistrationId": null,
163
+ "RegisteredName": "Versent",
164
+ "AddressLine1": "Level 19 8 Exhibition Street",
165
+ "AddressLine2": null,
166
+ "City": "Melbourne",
167
+ "Postcode": "3000",
168
+ "Country": "AU",
169
+ "ParentOrganisationReference": "",
170
+ "AuthorisationServers": [
171
+ {
172
+ "AuthorisationServerId": "84121009-1cbf-4f61-8308-9a86113dff10",
173
+ "AutoRegistrationSupported": false,
174
+ "AutoRegistrationNotificationWebhook": null,
175
+ "SupportsCiba": false,
176
+ "SupportsDCR": false,
177
+ "SupportsRedirect": false,
178
+ "ApiResources": [],
179
+ "AuthorisationServerCertifications": [],
180
+ "CustomerFriendlyDescription": "https://connectid.noideaapp.com/.well-known/openid-configuration",
181
+ "CustomerFriendlyLogoUri": "https://www.pingidentity.com/content/dam/ping-6-2-assets/topnav-json-configs/Ping-Logo.svg",
182
+ "CustomerFriendlyName": "Versent-Demo",
183
+ "DeveloperPortalUri": null,
184
+ "TermsOfServiceUri": null,
185
+ "NotificationWebhookAddedDate": null,
186
+ "OpenIDDiscoveryDocument": "https://connectid.noideaapp.com/.well-known/openid-configuration",
187
+ "Issuer": "https://connectid.noideaapp.com",
188
+ "PayloadSigningCertLocationUri": "https://connectid.noideaapp.com/pf/JWKS",
189
+ "CreatedAt": 1676537466,
190
+ "ParentAuthorisationServerId": null,
191
+ "DeprecatedDate": null,
192
+ "RetirementDate": null,
193
+ "SupersededByAuthorisationServerId": null
194
+ },
195
+ {
196
+ "AuthorisationServerId": "ce448897-bbea-45e5-9950-087d6ff2862c",
197
+ "AutoRegistrationSupported": false,
198
+ "AutoRegistrationNotificationWebhook": null,
199
+ "SupportsCiba": false,
200
+ "SupportsDCR": false,
201
+ "SupportsRedirect": false,
202
+ "ApiResources": [],
203
+ "AuthorisationServerCertifications": [],
204
+ "CustomerFriendlyDescription": "https://idp.versentmssp.au/.well-known/openid-configuration",
205
+ "CustomerFriendlyLogoUri": "https://www.pingidentity.com/content/dam/ping-6-2-assets/topnav-json-configs/Ping-Logo.svg",
206
+ "CustomerFriendlyName": "V-Demo",
207
+ "DeveloperPortalUri": null,
208
+ "TermsOfServiceUri": "https://idp.versentmssp.au",
209
+ "NotificationWebhookAddedDate": null,
210
+ "OpenIDDiscoveryDocument": "https://idp.versentmssp.au/.well-known/openid-configuration",
211
+ "Issuer": "https://idp.versentmssp.au",
212
+ "PayloadSigningCertLocationUri": "https://idp.versentmssp.au/pf/JWKS",
213
+ "CreatedAt": 1675654290,
214
+ "ParentAuthorisationServerId": null,
215
+ "DeprecatedDate": null,
216
+ "RetirementDate": null,
217
+ "SupersededByAuthorisationServerId": null
218
+ }
219
+ ],
220
+ "OrgDomainClaims": [
221
+ {
222
+ "AuthorisationDomainName": "connectID",
223
+ "AuthorityName": "connectID",
224
+ "RegistrationId": "ConnectID",
225
+ "Status": "Active"
226
+ }
227
+ ],
228
+ "OrgDomainRoleClaims": [
229
+ {
230
+ "Status": "Active",
231
+ "AuthorisationDomain": "connectID",
232
+ "Role": "IDP",
233
+ "Authorisations": [],
234
+ "RegistrationId": "IDP",
235
+ "RoleType": "Directory",
236
+ "Exclusive": false,
237
+ "Metadata": []
238
+ },
239
+ {
240
+ "Status": "Active",
241
+ "AuthorisationDomain": "connectID",
242
+ "Role": "RP-CORE",
243
+ "Authorisations": [],
244
+ "RegistrationId": "RP-CORE",
245
+ "RoleType": "Federation",
246
+ "Exclusive": false,
247
+ "Metadata": [
248
+ {
249
+ "MetadataId": "109bcd54-2914-4f98-90b9-be2647819e7f",
250
+ "DomainRoleName": "RP-CORE",
251
+ "Type": "claim",
252
+ "Name": "email"
253
+ },
254
+ {
255
+ "MetadataId": "0cd7452d-6b6d-4151-b756-c99a2cfac609",
256
+ "DomainRoleName": "RP-CORE",
257
+ "Type": "claim",
258
+ "Name": "phone_number"
259
+ },
260
+ {
261
+ "MetadataId": "261ec1fa-a6fb-46cc-acb7-7faa0412f22a",
262
+ "DomainRoleName": "RP-CORE",
263
+ "Type": "claim",
264
+ "Name": "middle_name"
265
+ },
266
+ {
267
+ "MetadataId": "8872dc8d-4271-458b-b73c-7ce91b7de552",
268
+ "DomainRoleName": "RP-CORE",
269
+ "Type": "claim",
270
+ "Name": "address"
271
+ },
272
+ {
273
+ "MetadataId": "15fcc989-1bb6-4c87-ac3d-77bda8eb34da",
274
+ "DomainRoleName": "RP-CORE",
275
+ "Type": "claim",
276
+ "Name": "name"
277
+ },
278
+ {
279
+ "MetadataId": "15a13e15-cf43-41dd-9661-7a14996900ca",
280
+ "DomainRoleName": "RP-CORE",
281
+ "Type": "claim",
282
+ "Name": "family_name"
283
+ },
284
+ {
285
+ "MetadataId": "14f5947c-1172-49a8-a04c-8e4f89fd4503",
286
+ "DomainRoleName": "RP-CORE",
287
+ "Type": "scope",
288
+ "Name": "openid"
289
+ },
290
+ {
291
+ "MetadataId": "d15dc17f-8588-431c-a66d-82946d009107",
292
+ "DomainRoleName": "RP-CORE",
293
+ "Type": "grant_type",
294
+ "Name": "authorization_code"
295
+ },
296
+ {
297
+ "MetadataId": "c5414d68-ef52-41e6-a127-762dfae96e4e",
298
+ "DomainRoleName": "RP-CORE",
299
+ "Type": "claim",
300
+ "Name": "given_name"
301
+ },
302
+ {
303
+ "MetadataId": "e94b2480-f774-4858-b680-5acf24afbdb5",
304
+ "DomainRoleName": "RP-CORE",
305
+ "Type": "claim",
306
+ "Name": "birthdate"
307
+ },
308
+ {
309
+ "MetadataId": "6201486b-120f-4f95-b1c8-1b0fa0d71056",
310
+ "DomainRoleName": "RP-CORE",
311
+ "Type": "claim",
312
+ "Name": "txn"
313
+ },
314
+ {
315
+ "MetadataId": "ec9bbff4-4486-4f2f-bf0d-9d652b899542",
316
+ "DomainRoleName": "RP-CORE",
317
+ "Type": "response_type",
318
+ "Name": "code"
319
+ }
320
+ ]
321
+ }
322
+ ]
323
+ },
324
+ {
325
+ "OrganisationId": "30609e97-ab39-465f-a35f-05dfc50a59b3",
326
+ "Status": "Active",
327
+ "OrganisationName": "Test - Raidiam Minimal Org",
328
+ "CreatedOn": "2023-02-21T03:56:39.322Z",
329
+ "LegalEntityName": "Raidiam Minimal Test Org",
330
+ "CountryOfRegistration": "AU",
331
+ "CompanyRegister": "Alan Registrar",
332
+ "Tag": [],
333
+ "Size": "",
334
+ "RegistrationNumber": "1234567890ABCDEF",
335
+ "RegistrationId": null,
336
+ "RegisteredName": null,
337
+ "AddressLine1": "28 Ramsay Street",
338
+ "AddressLine2": null,
339
+ "City": "Summer Bay",
340
+ "Postcode": "6000",
341
+ "Country": "AU",
342
+ "ParentOrganisationReference": "",
343
+ "AuthorisationServers": [
344
+ {
345
+ "AuthorisationServerId": "285e72d9-2502-4843-b8ef-37758e96afae",
346
+ "AutoRegistrationSupported": true,
347
+ "AutoRegistrationNotificationWebhook": null,
348
+ "SupportsCiba": false,
349
+ "SupportsDCR": false,
350
+ "SupportsRedirect": true,
351
+ "ApiResources": [],
352
+ "AuthorisationServerCertifications": [
353
+ {
354
+ "CertificationStartDate": "01/01/2023",
355
+ "CertificationExpirationDate": "01/01/2024",
356
+ "CertificationId": "5b8d3362-8a88-4a39-81d6-1bd62842090e",
357
+ "AuthorisationServerId": "285e72d9-2502-4843-b8ef-37758e96afae",
358
+ "Status": "Self-Certified",
359
+ "ProfileVariant": "FAPI2 Adv. OP w/Private Key, PAR",
360
+ "ProfileType": "Redirect",
361
+ "ProfileVersion": 1,
362
+ "CertificationURI": "https://www.example.com"
363
+ }
364
+ ],
365
+ "CustomerFriendlyDescription": "1",
366
+ "CustomerFriendlyLogoUri": "https://www.example.com/file.png",
367
+ "CustomerFriendlyName": "PRT 2006-01",
368
+ "DeveloperPortalUri": "https://www.example.com",
369
+ "TermsOfServiceUri": "https://www.example.com",
370
+ "NotificationWebhookAddedDate": "2023-06-20",
371
+ "OpenIDDiscoveryDocument": "https://accounts.google.com/.well-known/openid-configuration",
372
+ "Issuer": "https://accounts.google.com",
373
+ "PayloadSigningCertLocationUri": "https://www.example.com",
374
+ "CreatedAt": 1687279910,
375
+ "ParentAuthorisationServerId": null,
376
+ "DeprecatedDate": null,
377
+ "RetirementDate": null,
378
+ "SupersededByAuthorisationServerId": null
379
+ }
380
+ ],
381
+ "OrgDomainClaims": [
382
+ {
383
+ "AuthorisationDomainName": "connectID",
384
+ "AuthorityName": "connectID",
385
+ "RegistrationId": "0987654321fedcba",
386
+ "Status": "Active"
387
+ }
388
+ ],
389
+ "OrgDomainRoleClaims": [
390
+ {
391
+ "Status": "Active",
392
+ "AuthorisationDomain": "connectID",
393
+ "Role": "RP-CORE",
394
+ "Authorisations": [],
395
+ "RegistrationId": "654753467564",
396
+ "RoleType": "Federation",
397
+ "Exclusive": false,
398
+ "Metadata": [
399
+ {
400
+ "MetadataId": "109bcd54-2914-4f98-90b9-be2647819e7f",
401
+ "DomainRoleName": "RP-CORE",
402
+ "Type": "claim",
403
+ "Name": "email"
404
+ },
405
+ {
406
+ "MetadataId": "0cd7452d-6b6d-4151-b756-c99a2cfac609",
407
+ "DomainRoleName": "RP-CORE",
408
+ "Type": "claim",
409
+ "Name": "phone_number"
410
+ },
411
+ {
412
+ "MetadataId": "261ec1fa-a6fb-46cc-acb7-7faa0412f22a",
413
+ "DomainRoleName": "RP-CORE",
414
+ "Type": "claim",
415
+ "Name": "middle_name"
416
+ },
417
+ {
418
+ "MetadataId": "8872dc8d-4271-458b-b73c-7ce91b7de552",
419
+ "DomainRoleName": "RP-CORE",
420
+ "Type": "claim",
421
+ "Name": "address"
422
+ },
423
+ {
424
+ "MetadataId": "15fcc989-1bb6-4c87-ac3d-77bda8eb34da",
425
+ "DomainRoleName": "RP-CORE",
426
+ "Type": "claim",
427
+ "Name": "name"
428
+ },
429
+ {
430
+ "MetadataId": "15a13e15-cf43-41dd-9661-7a14996900ca",
431
+ "DomainRoleName": "RP-CORE",
432
+ "Type": "claim",
433
+ "Name": "family_name"
434
+ },
435
+ {
436
+ "MetadataId": "14f5947c-1172-49a8-a04c-8e4f89fd4503",
437
+ "DomainRoleName": "RP-CORE",
438
+ "Type": "scope",
439
+ "Name": "openid"
440
+ },
441
+ {
442
+ "MetadataId": "d15dc17f-8588-431c-a66d-82946d009107",
443
+ "DomainRoleName": "RP-CORE",
444
+ "Type": "grant_type",
445
+ "Name": "authorization_code"
446
+ },
447
+ {
448
+ "MetadataId": "c5414d68-ef52-41e6-a127-762dfae96e4e",
449
+ "DomainRoleName": "RP-CORE",
450
+ "Type": "claim",
451
+ "Name": "given_name"
452
+ },
453
+ {
454
+ "MetadataId": "e94b2480-f774-4858-b680-5acf24afbdb5",
455
+ "DomainRoleName": "RP-CORE",
456
+ "Type": "claim",
457
+ "Name": "birthdate"
458
+ },
459
+ {
460
+ "MetadataId": "6201486b-120f-4f95-b1c8-1b0fa0d71056",
461
+ "DomainRoleName": "RP-CORE",
462
+ "Type": "claim",
463
+ "Name": "txn"
464
+ },
465
+ {
466
+ "MetadataId": "ec9bbff4-4486-4f2f-bf0d-9d652b899542",
467
+ "DomainRoleName": "RP-CORE",
468
+ "Type": "response_type",
469
+ "Name": "code"
470
+ }
471
+ ]
472
+ },
473
+ {
474
+ "Status": "Active",
475
+ "AuthorisationDomain": "connectID",
476
+ "Role": "Test",
477
+ "Authorisations": [
478
+ {
479
+ "Status": "Active",
480
+ "MemberState": "UK"
481
+ }
482
+ ],
483
+ "RegistrationId": "0987654321fedcba",
484
+ "RoleType": "Directory",
485
+ "Exclusive": false,
486
+ "Metadata": [
487
+ {
488
+ "MetadataId": "01d10e16-ee27-4dc1-b91e-07625ac04231",
489
+ "DomainRoleName": "Test",
490
+ "Type": "grant_type",
491
+ "Name": "authorization_code"
492
+ },
493
+ {
494
+ "MetadataId": "e5e5ad9f-25d4-4335-8d59-1e91d152b955",
495
+ "DomainRoleName": "Test",
496
+ "Type": "scope",
497
+ "Name": "directory:software"
498
+ },
499
+ {
500
+ "MetadataId": "4a94fa12-7846-4665-bb1f-62f552730f55",
501
+ "DomainRoleName": "Test",
502
+ "Type": "grant_type",
503
+ "Name": "client_credentials"
504
+ },
505
+ {
506
+ "MetadataId": "d065de33-f244-412c-b533-9f27bb8c5337",
507
+ "DomainRoleName": "Test",
508
+ "Type": "response_type",
509
+ "Name": "code"
510
+ }
511
+ ]
512
+ }
513
+ ]
514
+ },
515
+ {
516
+ "OrganisationId": "bbbb4cd4-94d4-4773-8d3f-e54a7ee8726d",
517
+ "Status": "Active",
518
+ "OrganisationName": "Test - Automation Org1",
519
+ "CreatedOn": "2022-11-18T05:11:47.019Z",
520
+ "LegalEntityName": "Test - Automation Org1",
521
+ "CountryOfRegistration": "AU",
522
+ "CompanyRegister": "ABN",
523
+ "Tag": [],
524
+ "Size": "",
525
+ "RegistrationNumber": "1234567890",
526
+ "RegistrationId": null,
527
+ "RegisteredName": "Test - Automation Org1",
528
+ "AddressLine1": "Level 1",
529
+ "AddressLine2": "255 George St",
530
+ "City": "Sydney",
531
+ "Postcode": "2000",
532
+ "Country": "AU",
533
+ "ParentOrganisationReference": "BPAY",
534
+ "AuthorisationServers": [
535
+ {
536
+ "AuthorisationServerId": "ae4e75f6-364b-408e-86d1-0fd1a42c2929",
537
+ "AutoRegistrationSupported": false,
538
+ "AutoRegistrationNotificationWebhook": null,
539
+ "SupportsCiba": false,
540
+ "SupportsDCR": false,
541
+ "SupportsRedirect": false,
542
+ "ApiResources": [],
543
+ "AuthorisationServerCertifications": [],
544
+ "CustomerFriendlyDescription": "zz - ConnectID test auth server",
545
+ "CustomerFriendlyLogoUri": "https://tpp.localhost/logo.svg",
546
+ "CustomerFriendlyName": "zz - ConnectID test auth server",
547
+ "DeveloperPortalUri": null,
548
+ "TermsOfServiceUri": null,
549
+ "NotificationWebhookAddedDate": null,
550
+ "OpenIDDiscoveryDocument": "https://auth.bank1.directory.sandbox.connectid.com.au/.well-known/openid-configuration",
551
+ "Issuer": "https://auth.bank1.directory.sandbox.connectid.com.au",
552
+ "PayloadSigningCertLocationUri": "https://auth.bank1.directory.sandbox.connectid.com.au/",
553
+ "CreatedAt": 1674181795,
554
+ "ParentAuthorisationServerId": null,
555
+ "DeprecatedDate": null,
556
+ "RetirementDate": null,
557
+ "SupersededByAuthorisationServerId": null
558
+ }
559
+ ],
560
+ "OrgDomainClaims": [
561
+ {
562
+ "AuthorisationDomainName": "connectID",
563
+ "AuthorityName": "connectID",
564
+ "RegistrationId": "connectID",
565
+ "Status": "Active"
566
+ }
567
+ ],
568
+ "OrgDomainRoleClaims": [
569
+ {
570
+ "Status": "Active",
571
+ "AuthorisationDomain": "connectID",
572
+ "Role": "Test",
573
+ "Authorisations": [],
574
+ "RegistrationId": "1234",
575
+ "RoleType": "Directory",
576
+ "Exclusive": false,
577
+ "Metadata": [
578
+ {
579
+ "MetadataId": "01d10e16-ee27-4dc1-b91e-07625ac04231",
580
+ "DomainRoleName": "Test",
581
+ "Type": "grant_type",
582
+ "Name": "authorization_code"
583
+ },
584
+ {
585
+ "MetadataId": "e5e5ad9f-25d4-4335-8d59-1e91d152b955",
586
+ "DomainRoleName": "Test",
587
+ "Type": "scope",
588
+ "Name": "directory:software"
589
+ },
590
+ {
591
+ "MetadataId": "4a94fa12-7846-4665-bb1f-62f552730f55",
592
+ "DomainRoleName": "Test",
593
+ "Type": "grant_type",
594
+ "Name": "client_credentials"
595
+ },
596
+ {
597
+ "MetadataId": "d065de33-f244-412c-b533-9f27bb8c5337",
598
+ "DomainRoleName": "Test",
599
+ "Type": "response_type",
600
+ "Name": "code"
601
+ }
602
+ ]
603
+ },
604
+ {
605
+ "Status": "Active",
606
+ "AuthorisationDomain": "connectID",
607
+ "Role": "IDP",
608
+ "Authorisations": [],
609
+ "RegistrationId": "IDP",
610
+ "RoleType": "Directory",
611
+ "Exclusive": false,
612
+ "Metadata": []
613
+ },
614
+ {
615
+ "Status": "Active",
616
+ "AuthorisationDomain": "connectID",
617
+ "Role": "RP-CORE",
618
+ "Authorisations": [],
619
+ "RegistrationId": "RP-CORE",
620
+ "RoleType": "Federation",
621
+ "Exclusive": false,
622
+ "Metadata": [
623
+ {
624
+ "MetadataId": "109bcd54-2914-4f98-90b9-be2647819e7f",
625
+ "DomainRoleName": "RP-CORE",
626
+ "Type": "claim",
627
+ "Name": "email"
628
+ },
629
+ {
630
+ "MetadataId": "0cd7452d-6b6d-4151-b756-c99a2cfac609",
631
+ "DomainRoleName": "RP-CORE",
632
+ "Type": "claim",
633
+ "Name": "phone_number"
634
+ },
635
+ {
636
+ "MetadataId": "261ec1fa-a6fb-46cc-acb7-7faa0412f22a",
637
+ "DomainRoleName": "RP-CORE",
638
+ "Type": "claim",
639
+ "Name": "middle_name"
640
+ },
641
+ {
642
+ "MetadataId": "8872dc8d-4271-458b-b73c-7ce91b7de552",
643
+ "DomainRoleName": "RP-CORE",
644
+ "Type": "claim",
645
+ "Name": "address"
646
+ },
647
+ {
648
+ "MetadataId": "15fcc989-1bb6-4c87-ac3d-77bda8eb34da",
649
+ "DomainRoleName": "RP-CORE",
650
+ "Type": "claim",
651
+ "Name": "name"
652
+ },
653
+ {
654
+ "MetadataId": "15a13e15-cf43-41dd-9661-7a14996900ca",
655
+ "DomainRoleName": "RP-CORE",
656
+ "Type": "claim",
657
+ "Name": "family_name"
658
+ },
659
+ {
660
+ "MetadataId": "14f5947c-1172-49a8-a04c-8e4f89fd4503",
661
+ "DomainRoleName": "RP-CORE",
662
+ "Type": "scope",
663
+ "Name": "openid"
664
+ },
665
+ {
666
+ "MetadataId": "d15dc17f-8588-431c-a66d-82946d009107",
667
+ "DomainRoleName": "RP-CORE",
668
+ "Type": "grant_type",
669
+ "Name": "authorization_code"
670
+ },
671
+ {
672
+ "MetadataId": "c5414d68-ef52-41e6-a127-762dfae96e4e",
673
+ "DomainRoleName": "RP-CORE",
674
+ "Type": "claim",
675
+ "Name": "given_name"
676
+ },
677
+ {
678
+ "MetadataId": "e94b2480-f774-4858-b680-5acf24afbdb5",
679
+ "DomainRoleName": "RP-CORE",
680
+ "Type": "claim",
681
+ "Name": "birthdate"
682
+ },
683
+ {
684
+ "MetadataId": "6201486b-120f-4f95-b1c8-1b0fa0d71056",
685
+ "DomainRoleName": "RP-CORE",
686
+ "Type": "claim",
687
+ "Name": "txn"
688
+ },
689
+ {
690
+ "MetadataId": "ec9bbff4-4486-4f2f-bf0d-9d652b899542",
691
+ "DomainRoleName": "RP-CORE",
692
+ "Type": "response_type",
693
+ "Name": "code"
694
+ }
695
+ ]
696
+ }
697
+ ]
698
+ },
699
+ {
700
+ "OrganisationId": "0247066bf3",
701
+ "Status": "Active",
702
+ "OrganisationName": "Test IDP Two",
703
+ "CreatedOn": "2022-08-05T04:48:06.366Z",
704
+ "LegalEntityName": "Test IDP Two Pty Ltd",
705
+ "CountryOfRegistration": "AU",
706
+ "CompanyRegister": "ABN",
707
+ "Tag": [],
708
+ "Size": "",
709
+ "RegistrationNumber": "12 004 044 969",
710
+ "RegistrationId": null,
711
+ "RegisteredName": "Test IDP Two Pty Ltd",
712
+ "AddressLine1": "128 Bridge street",
713
+ "AddressLine2": null,
714
+ "City": "Sydney",
715
+ "Postcode": "2001",
716
+ "Country": "AU",
717
+ "ParentOrganisationReference": "",
718
+ "AuthorisationServers": [
719
+ {
720
+ "AuthorisationServerId": "064ecc5f-6519-426b-a419-2c4db8660e40",
721
+ "AutoRegistrationSupported": true,
722
+ "AutoRegistrationNotificationWebhook": "https://auth.bank2.directory.sandbox.connectid.com.au/ssonboard/webhook",
723
+ "SupportsCiba": false,
724
+ "SupportsDCR": false,
725
+ "SupportsRedirect": false,
726
+ "ApiResources": [],
727
+ "AuthorisationServerCertifications": [],
728
+ "CustomerFriendlyDescription": "Bank C for BP testing",
729
+ "CustomerFriendlyLogoUri": "https://static.sandbox.connectid.com.au/BankC.svg",
730
+ "CustomerFriendlyName": "Bank C (BP test)",
731
+ "DeveloperPortalUri": null,
732
+ "TermsOfServiceUri": null,
733
+ "NotificationWebhookAddedDate": null,
734
+ "OpenIDDiscoveryDocument": "https://auth.bank2.directory.sandbox.connectid.com.au/.well-known/openid-configuration",
735
+ "Issuer": "https://auth.bank2.directory.sandbox.connectid.com.au",
736
+ "PayloadSigningCertLocationUri": "https://auth.bank2.directory.sandbox.connectid.com.au/na",
737
+ "CreatedAt": 1666238683,
738
+ "ParentAuthorisationServerId": null,
739
+ "DeprecatedDate": null,
740
+ "RetirementDate": null,
741
+ "SupersededByAuthorisationServerId": null
742
+ }
743
+ ],
744
+ "OrgDomainClaims": [
745
+ {
746
+ "AuthorisationDomainName": "connectID",
747
+ "AuthorityName": "connectID",
748
+ "RegistrationId": "Test IDP 2",
749
+ "Status": "Active"
750
+ }
751
+ ],
752
+ "OrgDomainRoleClaims": [
753
+ {
754
+ "Status": "Inactive",
755
+ "AuthorisationDomain": "connectID",
756
+ "Role": "RP-CORE",
757
+ "Authorisations": [],
758
+ "RegistrationId": "RP-CODE001",
759
+ "RoleType": "Federation",
760
+ "Exclusive": false,
761
+ "Metadata": [
762
+ {
763
+ "MetadataId": "109bcd54-2914-4f98-90b9-be2647819e7f",
764
+ "DomainRoleName": "RP-CORE",
765
+ "Type": "claim",
766
+ "Name": "email"
767
+ },
768
+ {
769
+ "MetadataId": "0cd7452d-6b6d-4151-b756-c99a2cfac609",
770
+ "DomainRoleName": "RP-CORE",
771
+ "Type": "claim",
772
+ "Name": "phone_number"
773
+ },
774
+ {
775
+ "MetadataId": "261ec1fa-a6fb-46cc-acb7-7faa0412f22a",
776
+ "DomainRoleName": "RP-CORE",
777
+ "Type": "claim",
778
+ "Name": "middle_name"
779
+ },
780
+ {
781
+ "MetadataId": "8872dc8d-4271-458b-b73c-7ce91b7de552",
782
+ "DomainRoleName": "RP-CORE",
783
+ "Type": "claim",
784
+ "Name": "address"
785
+ },
786
+ {
787
+ "MetadataId": "15fcc989-1bb6-4c87-ac3d-77bda8eb34da",
788
+ "DomainRoleName": "RP-CORE",
789
+ "Type": "claim",
790
+ "Name": "name"
791
+ },
792
+ {
793
+ "MetadataId": "15a13e15-cf43-41dd-9661-7a14996900ca",
794
+ "DomainRoleName": "RP-CORE",
795
+ "Type": "claim",
796
+ "Name": "family_name"
797
+ },
798
+ {
799
+ "MetadataId": "14f5947c-1172-49a8-a04c-8e4f89fd4503",
800
+ "DomainRoleName": "RP-CORE",
801
+ "Type": "scope",
802
+ "Name": "openid"
803
+ },
804
+ {
805
+ "MetadataId": "d15dc17f-8588-431c-a66d-82946d009107",
806
+ "DomainRoleName": "RP-CORE",
807
+ "Type": "grant_type",
808
+ "Name": "authorization_code"
809
+ },
810
+ {
811
+ "MetadataId": "c5414d68-ef52-41e6-a127-762dfae96e4e",
812
+ "DomainRoleName": "RP-CORE",
813
+ "Type": "claim",
814
+ "Name": "given_name"
815
+ },
816
+ {
817
+ "MetadataId": "e94b2480-f774-4858-b680-5acf24afbdb5",
818
+ "DomainRoleName": "RP-CORE",
819
+ "Type": "claim",
820
+ "Name": "birthdate"
821
+ },
822
+ {
823
+ "MetadataId": "6201486b-120f-4f95-b1c8-1b0fa0d71056",
824
+ "DomainRoleName": "RP-CORE",
825
+ "Type": "claim",
826
+ "Name": "txn"
827
+ },
828
+ {
829
+ "MetadataId": "ec9bbff4-4486-4f2f-bf0d-9d652b899542",
830
+ "DomainRoleName": "RP-CORE",
831
+ "Type": "response_type",
832
+ "Name": "code"
833
+ }
834
+ ]
835
+ },
836
+ {
837
+ "Status": "Active",
838
+ "AuthorisationDomain": "connectID",
839
+ "Role": "IDP",
840
+ "Authorisations": [
841
+ {
842
+ "Status": "Active",
843
+ "MemberState": "AU"
844
+ }
845
+ ],
846
+ "RegistrationId": "IDP001",
847
+ "RoleType": "Directory",
848
+ "Exclusive": false,
849
+ "Metadata": []
850
+ }
851
+ ]
852
+ },
853
+ {
854
+ "OrganisationId": "adf2af89-2782-4058-86d9-ff3a9068e4a5",
855
+ "Status": "Active",
856
+ "OrganisationName": "Commonwealth Bank of Australia",
857
+ "CreatedOn": "2022-08-26T02:46:45.952Z",
858
+ "LegalEntityName": "Commonwealth Bank of Australia",
859
+ "CountryOfRegistration": "AU",
860
+ "CompanyRegister": "ABN",
861
+ "Tag": [],
862
+ "Size": "",
863
+ "RegistrationNumber": "48 123 123 124",
864
+ "RegistrationId": null,
865
+ "RegisteredName": "Commonwealth Bank of Australia",
866
+ "AddressLine1": "Ground Floor Tower 1",
867
+ "AddressLine2": "201 Sussex Street",
868
+ "City": "Sydney",
869
+ "Postcode": "2000",
870
+ "Country": "AU",
871
+ "ParentOrganisationReference": "",
872
+ "AuthorisationServers": [
873
+ {
874
+ "AuthorisationServerId": "6cb4dd81-b99c-4665-977c-8dc2e8f8fb75",
875
+ "AutoRegistrationSupported": false,
876
+ "AutoRegistrationNotificationWebhook": null,
877
+ "SupportsCiba": false,
878
+ "SupportsDCR": false,
879
+ "SupportsRedirect": false,
880
+ "ApiResources": [],
881
+ "AuthorisationServerCertifications": [],
882
+ "CustomerFriendlyDescription": "Test Env Authorization server - CBA",
883
+ "CustomerFriendlyLogoUri": "https://www.commbank.com.au/content/dam/commbank/commBank-logo.svg",
884
+ "CustomerFriendlyName": "Test IDP - CBA",
885
+ "DeveloperPortalUri": null,
886
+ "TermsOfServiceUri": null,
887
+ "NotificationWebhookAddedDate": null,
888
+ "OpenIDDiscoveryDocument": "https://partner.idp.test.commbank.com.au/.well-known/openid-configuration",
889
+ "Issuer": "https://partner.idp.test.commbank.com.au",
890
+ "PayloadSigningCertLocationUri": "https://partner.idp.test.commbank.com.au/pf/JWKS",
891
+ "CreatedAt": 1662438073,
892
+ "ParentAuthorisationServerId": null,
893
+ "DeprecatedDate": null,
894
+ "RetirementDate": null,
895
+ "SupersededByAuthorisationServerId": null
896
+ },
897
+ {
898
+ "AuthorisationServerId": "326e51d7-c890-4e88-bcda-61cc1df62cfd",
899
+ "AutoRegistrationSupported": false,
900
+ "AutoRegistrationNotificationWebhook": null,
901
+ "SupportsCiba": false,
902
+ "SupportsDCR": false,
903
+ "SupportsRedirect": false,
904
+ "ApiResources": [],
905
+ "AuthorisationServerCertifications": [],
906
+ "CustomerFriendlyDescription": "Staging env Auth Server - CBA",
907
+ "CustomerFriendlyLogoUri": "https://www.commbank.com.au/content/dam/commbank/commBank-logo.svg",
908
+ "CustomerFriendlyName": "Staging - IDP - CBA",
909
+ "DeveloperPortalUri": null,
910
+ "TermsOfServiceUri": null,
911
+ "NotificationWebhookAddedDate": null,
912
+ "OpenIDDiscoveryDocument": "https://partner.idp.stg.commbank.com.au/.well-known/openid-configuration",
913
+ "Issuer": "https://partner.idp.stg.commbank.com.au",
914
+ "PayloadSigningCertLocationUri": "https://partner.idp.stg.commbank.com.au/pf/JWKS",
915
+ "CreatedAt": 1662438043,
916
+ "ParentAuthorisationServerId": null,
917
+ "DeprecatedDate": null,
918
+ "RetirementDate": null,
919
+ "SupersededByAuthorisationServerId": null
920
+ }
921
+ ],
922
+ "OrgDomainClaims": [
923
+ {
924
+ "AuthorisationDomainName": "connectID",
925
+ "AuthorityName": "connectID",
926
+ "RegistrationId": "ConnectID",
927
+ "Status": "Active"
928
+ }
929
+ ],
930
+ "OrgDomainRoleClaims": [
931
+ {
932
+ "Status": "Active",
933
+ "AuthorisationDomain": "connectID",
934
+ "Role": "IDP",
935
+ "Authorisations": [],
936
+ "RegistrationId": "IDP",
937
+ "RoleType": "Directory",
938
+ "Exclusive": false,
939
+ "Metadata": []
940
+ },
941
+ {
942
+ "Status": "Active",
943
+ "AuthorisationDomain": "connectID",
944
+ "Role": "RP-CORE",
945
+ "Authorisations": [],
946
+ "RegistrationId": "rp-core",
947
+ "RoleType": "Federation",
948
+ "Exclusive": false,
949
+ "Metadata": [
950
+ {
951
+ "MetadataId": "109bcd54-2914-4f98-90b9-be2647819e7f",
952
+ "DomainRoleName": "RP-CORE",
953
+ "Type": "claim",
954
+ "Name": "email"
955
+ },
956
+ {
957
+ "MetadataId": "0cd7452d-6b6d-4151-b756-c99a2cfac609",
958
+ "DomainRoleName": "RP-CORE",
959
+ "Type": "claim",
960
+ "Name": "phone_number"
961
+ },
962
+ {
963
+ "MetadataId": "261ec1fa-a6fb-46cc-acb7-7faa0412f22a",
964
+ "DomainRoleName": "RP-CORE",
965
+ "Type": "claim",
966
+ "Name": "middle_name"
967
+ },
968
+ {
969
+ "MetadataId": "8872dc8d-4271-458b-b73c-7ce91b7de552",
970
+ "DomainRoleName": "RP-CORE",
971
+ "Type": "claim",
972
+ "Name": "address"
973
+ },
974
+ {
975
+ "MetadataId": "15fcc989-1bb6-4c87-ac3d-77bda8eb34da",
976
+ "DomainRoleName": "RP-CORE",
977
+ "Type": "claim",
978
+ "Name": "name"
979
+ },
980
+ {
981
+ "MetadataId": "15a13e15-cf43-41dd-9661-7a14996900ca",
982
+ "DomainRoleName": "RP-CORE",
983
+ "Type": "claim",
984
+ "Name": "family_name"
985
+ },
986
+ {
987
+ "MetadataId": "14f5947c-1172-49a8-a04c-8e4f89fd4503",
988
+ "DomainRoleName": "RP-CORE",
989
+ "Type": "scope",
990
+ "Name": "openid"
991
+ },
992
+ {
993
+ "MetadataId": "d15dc17f-8588-431c-a66d-82946d009107",
994
+ "DomainRoleName": "RP-CORE",
995
+ "Type": "grant_type",
996
+ "Name": "authorization_code"
997
+ },
998
+ {
999
+ "MetadataId": "c5414d68-ef52-41e6-a127-762dfae96e4e",
1000
+ "DomainRoleName": "RP-CORE",
1001
+ "Type": "claim",
1002
+ "Name": "given_name"
1003
+ },
1004
+ {
1005
+ "MetadataId": "e94b2480-f774-4858-b680-5acf24afbdb5",
1006
+ "DomainRoleName": "RP-CORE",
1007
+ "Type": "claim",
1008
+ "Name": "birthdate"
1009
+ },
1010
+ {
1011
+ "MetadataId": "6201486b-120f-4f95-b1c8-1b0fa0d71056",
1012
+ "DomainRoleName": "RP-CORE",
1013
+ "Type": "claim",
1014
+ "Name": "txn"
1015
+ },
1016
+ {
1017
+ "MetadataId": "ec9bbff4-4486-4f2f-bf0d-9d652b899542",
1018
+ "DomainRoleName": "RP-CORE",
1019
+ "Type": "response_type",
1020
+ "Name": "code"
1021
+ }
1022
+ ]
1023
+ }
1024
+ ]
1025
+ },
1026
+ {
1027
+ "OrganisationId": "355d2fe0-b59f-4c6f-9bc9-1b449ebaa2fd",
1028
+ "Status": "Active",
1029
+ "OrganisationName": "Westpac",
1030
+ "CreatedOn": "2022-11-23T06:35:26.480Z",
1031
+ "LegalEntityName": "Westpac",
1032
+ "CountryOfRegistration": "AU",
1033
+ "CompanyRegister": "ABN",
1034
+ "Tag": [],
1035
+ "Size": "",
1036
+ "RegistrationNumber": "33 007 457 141",
1037
+ "RegistrationId": "",
1038
+ "RegisteredName": "Westpac Banking Corporation",
1039
+ "AddressLine1": "275 Kent St",
1040
+ "AddressLine2": "",
1041
+ "City": "Sydney",
1042
+ "Postcode": "2000",
1043
+ "Country": "AU",
1044
+ "ParentOrganisationReference": "",
1045
+ "AuthorisationServers": [
1046
+ {
1047
+ "AuthorisationServerId": "e7fe3a39-4a8c-4077-9c24-ef5b935ddf8a",
1048
+ "AutoRegistrationSupported": false,
1049
+ "AutoRegistrationNotificationWebhook": null,
1050
+ "SupportsCiba": false,
1051
+ "SupportsDCR": false,
1052
+ "SupportsRedirect": false,
1053
+ "ApiResources": [],
1054
+ "AuthorisationServerCertifications": [
1055
+ {
1056
+ "CertificationStartDate": "16/05/2023",
1057
+ "CertificationExpirationDate": "15/05/2024",
1058
+ "CertificationId": "da68f4f2-47a9-4589-8358-2bb2bc744f7b",
1059
+ "AuthorisationServerId": "e7fe3a39-4a8c-4077-9c24-ef5b935ddf8a",
1060
+ "Status": "Certified",
1061
+ "ProfileVariant": "web",
1062
+ "ProfileType": "Channel",
1063
+ "ProfileVersion": 1,
1064
+ "CertificationURI": "https://cdn.dev.connectid.com.au/certification/certification-result.zip"
1065
+ }
1066
+ ],
1067
+ "CustomerFriendlyDescription": "Westpac Test Environment",
1068
+ "CustomerFriendlyLogoUri": "https://www.pingidentity.com/content/dam/ping-6-2-assets/topnav-json-configs/Ping-Logo.svg",
1069
+ "CustomerFriendlyName": "WBC-Test",
1070
+ "DeveloperPortalUri": null,
1071
+ "TermsOfServiceUri": null,
1072
+ "NotificationWebhookAddedDate": null,
1073
+ "OpenIDDiscoveryDocument": "https://cida.idp2-sit.preprod.westpac.com.au/.well-known/openid-configuration",
1074
+ "Issuer": "https://cida.idp2-sit.preprod.westpac.com.au",
1075
+ "PayloadSigningCertLocationUri": "https://cida.idp2-sit.preprod.westpac.com.au/pf/JWKS",
1076
+ "CreatedAt": 1680233654,
1077
+ "ParentAuthorisationServerId": null,
1078
+ "DeprecatedDate": null,
1079
+ "RetirementDate": null,
1080
+ "SupersededByAuthorisationServerId": null
1081
+ }
1082
+ ],
1083
+ "OrgDomainClaims": [
1084
+ {
1085
+ "AuthorisationDomainName": "connectID",
1086
+ "AuthorityName": "connectID",
1087
+ "RegistrationId": "connectID",
1088
+ "Status": "Active"
1089
+ }
1090
+ ],
1091
+ "OrgDomainRoleClaims": [
1092
+ {
1093
+ "Status": "Active",
1094
+ "AuthorisationDomain": "connectID",
1095
+ "Role": "IDP",
1096
+ "Authorisations": [],
1097
+ "RegistrationId": "IDP",
1098
+ "RoleType": "Directory",
1099
+ "Exclusive": false,
1100
+ "Metadata": []
1101
+ }
1102
+ ]
1103
+ },
1104
+ {
1105
+ "OrganisationId": "7b890f97-e92f-4dad-8886-02c386ad4fcc",
1106
+ "Status": "Active",
1107
+ "OrganisationName": "ConnectID Mock Banks",
1108
+ "CreatedOn": "2022-07-29T01:56:48.625Z",
1109
+ "LegalEntityName": "ConnectID Mock Banks",
1110
+ "CountryOfRegistration": "AU",
1111
+ "CompanyRegister": "ABN",
1112
+ "Tag": [],
1113
+ "Size": "",
1114
+ "RegistrationNumber": "80 648 970 101",
1115
+ "RegistrationId": null,
1116
+ "RegisteredName": "ConnectID Mock Banks",
1117
+ "AddressLine1": "Level 1",
1118
+ "AddressLine2": "255 George St",
1119
+ "City": "Sydney",
1120
+ "Postcode": "2000",
1121
+ "Country": "AU",
1122
+ "ParentOrganisationReference": "",
1123
+ "AuthorisationServers": [
1124
+ {
1125
+ "AuthorisationServerId": "ce868ca5-0b99-47e6-b8cd-e26aac082448",
1126
+ "AutoRegistrationSupported": true,
1127
+ "AutoRegistrationNotificationWebhook": "https://auth.bank3.directory.sandbox.connectid.com.au/ssonboard/webhook",
1128
+ "SupportsCiba": false,
1129
+ "SupportsDCR": false,
1130
+ "SupportsRedirect": true,
1131
+ "ApiResources": [],
1132
+ "AuthorisationServerCertifications": [
1133
+ {
1134
+ "CertificationStartDate": "15/05/2023",
1135
+ "CertificationExpirationDate": "14/05/2099",
1136
+ "CertificationId": "383701f8-561a-4ac4-a91b-541b234dd9f8",
1137
+ "AuthorisationServerId": "ce868ca5-0b99-47e6-b8cd-e26aac082448",
1138
+ "Status": "Certified",
1139
+ "ProfileVariant": "cba_loyalty",
1140
+ "ProfileType": "ConnectID Claims",
1141
+ "ProfileVersion": 1,
1142
+ "CertificationURI": "https://cdn.dev.connectid.com.au/certification/certification-result.zip"
1143
+ },
1144
+ {
1145
+ "CertificationStartDate": "15/05/2023",
1146
+ "CertificationExpirationDate": "14/05/2099",
1147
+ "CertificationId": "383701f8-561a-4ac4-a91b-541b234dd9f8",
1148
+ "AuthorisationServerId": "ce868ca5-0b99-47e6-b8cd-e26aac082448",
1149
+ "Status": "Certified",
1150
+ "ProfileVariant": "over16",
1151
+ "ProfileType": "ConnectID Claims",
1152
+ "ProfileVersion": 1,
1153
+ "CertificationURI": "https://cdn.dev.connectid.com.au/certification/certification-result.zip"
1154
+ },
1155
+ {
1156
+ "CertificationStartDate": "07/08/2022",
1157
+ "CertificationExpirationDate": "07/08/2099",
1158
+ "CertificationId": "bb7360ca-2f27-491c-b9aa-7708405badd1",
1159
+ "AuthorisationServerId": "ce868ca5-0b99-47e6-b8cd-e26aac082448",
1160
+ "Status": "Certified",
1161
+ "ProfileVariant": "FAPI2 Adv. OP w/Private Key, PAR",
1162
+ "ProfileType": "Redirect",
1163
+ "ProfileVersion": 2,
1164
+ "CertificationURI": "https://static.relyingparty.net/text.zip"
1165
+ },
1166
+ {
1167
+ "CertificationStartDate": "15/05/2023",
1168
+ "CertificationExpirationDate": "14/05/2099",
1169
+ "CertificationId": "45142d8f-b7d7-439b-809d-52cbb79b7c52",
1170
+ "AuthorisationServerId": "ce868ca5-0b99-47e6-b8cd-e26aac082448",
1171
+ "Status": "Certified",
1172
+ "ProfileVariant": "phone_number",
1173
+ "ProfileType": "ConnectID Claims",
1174
+ "ProfileVersion": 1,
1175
+ "CertificationURI": "https://cdn.dev.connectid.com.au/certification/certification-result.zip"
1176
+ },
1177
+ {
1178
+ "CertificationStartDate": "15/05/2023",
1179
+ "CertificationExpirationDate": "14/05/2099",
1180
+ "CertificationId": "85ca445a-ec8a-4734-b790-df48abd5cdc6",
1181
+ "AuthorisationServerId": "ce868ca5-0b99-47e6-b8cd-e26aac082448",
1182
+ "Status": "Certified",
1183
+ "ProfileVariant": "over25",
1184
+ "ProfileType": "ConnectID Claims",
1185
+ "ProfileVersion": 1,
1186
+ "CertificationURI": "https://cdn.dev.connectid.com.au/certification/certification-result.zip"
1187
+ },
1188
+ {
1189
+ "CertificationStartDate": "15/05/2023",
1190
+ "CertificationExpirationDate": "14/05/2099",
1191
+ "CertificationId": "e01701c9-325f-466e-99ec-2913b3ec7f96",
1192
+ "AuthorisationServerId": "ce868ca5-0b99-47e6-b8cd-e26aac082448",
1193
+ "Status": "Certified",
1194
+ "ProfileVariant": "email",
1195
+ "ProfileType": "ConnectID Claims",
1196
+ "ProfileVersion": 1,
1197
+ "CertificationURI": "https://cdn.dev.connectid.com.au/certification/certification-result.zip"
1198
+ },
1199
+ {
1200
+ "CertificationStartDate": "15/05/2023",
1201
+ "CertificationExpirationDate": "14/05/2099",
1202
+ "CertificationId": "b837874d-f398-4d82-bbe8-1af3c9ae661a",
1203
+ "AuthorisationServerId": "ce868ca5-0b99-47e6-b8cd-e26aac082448",
1204
+ "Status": "Certified",
1205
+ "ProfileVariant": "beneficiary_account_international",
1206
+ "ProfileType": "ConnectID Claims",
1207
+ "ProfileVersion": 1,
1208
+ "CertificationURI": "https://cdn.dev.connectid.com.au/certification/certification-result.zip"
1209
+ },
1210
+ {
1211
+ "CertificationStartDate": "15/05/2023",
1212
+ "CertificationExpirationDate": "14/05/2099",
1213
+ "CertificationId": "98800163-2004-4d3c-aae7-89408dddee8a",
1214
+ "AuthorisationServerId": "ce868ca5-0b99-47e6-b8cd-e26aac082448",
1215
+ "Status": "Certified",
1216
+ "ProfileVariant": "over18",
1217
+ "ProfileType": "ConnectID Claims",
1218
+ "ProfileVersion": 1,
1219
+ "CertificationURI": "https://cdn.dev.connectid.com.au/certification/certification-result.zip"
1220
+ },
1221
+ {
1222
+ "CertificationStartDate": "15/05/2023",
1223
+ "CertificationExpirationDate": "14/05/2099",
1224
+ "CertificationId": "2f961652-70c8-46dc-b11d-163f6329d8a5",
1225
+ "AuthorisationServerId": "ce868ca5-0b99-47e6-b8cd-e26aac082448",
1226
+ "Status": "Certified",
1227
+ "ProfileVariant": "beneficiary_account_au",
1228
+ "ProfileType": "ConnectID Claims",
1229
+ "ProfileVersion": 1,
1230
+ "CertificationURI": "https://cdn.dev.connectid.com.au/certification/certification-result.zip"
1231
+ },
1232
+ {
1233
+ "CertificationStartDate": "15/05/2023",
1234
+ "CertificationExpirationDate": "14/05/2099",
1235
+ "CertificationId": "8a0ed38c-c9a0-488b-a03c-2f7d2459380d",
1236
+ "AuthorisationServerId": "ce868ca5-0b99-47e6-b8cd-e26aac082448",
1237
+ "Status": "Certified",
1238
+ "ProfileVariant": "address",
1239
+ "ProfileType": "ConnectID Claims",
1240
+ "ProfileVersion": 1,
1241
+ "CertificationURI": "https://cdn.dev.connectid.com.au/certification/certification-result.zip"
1242
+ },
1243
+ {
1244
+ "CertificationStartDate": "15/05/2023",
1245
+ "CertificationExpirationDate": "14/05/2099",
1246
+ "CertificationId": "8a4e9938-21c1-44bb-aa63-eb51ab30980c",
1247
+ "AuthorisationServerId": "ce868ca5-0b99-47e6-b8cd-e26aac082448",
1248
+ "Status": "Certified",
1249
+ "ProfileVariant": "birthdate",
1250
+ "ProfileType": "ConnectID Claims",
1251
+ "ProfileVersion": 1,
1252
+ "CertificationURI": "https://cdn.dev.connectid.com.au/certification/certification-result.zip"
1253
+ },
1254
+ {
1255
+ "CertificationStartDate": "15/05/2023",
1256
+ "CertificationExpirationDate": "14/05/2099",
1257
+ "CertificationId": "497d0100-40ba-4418-917d-28e2bf39e8db",
1258
+ "AuthorisationServerId": "ce868ca5-0b99-47e6-b8cd-e26aac082448",
1259
+ "Status": "Certified",
1260
+ "ProfileVariant": "over65",
1261
+ "ProfileType": "ConnectID Claims",
1262
+ "ProfileVersion": 1,
1263
+ "CertificationURI": "https://cdn.dev.connectid.com.au/certification/certification-result.zip"
1264
+ },
1265
+ {
1266
+ "CertificationStartDate": "15/05/2023",
1267
+ "CertificationExpirationDate": "14/05/2099",
1268
+ "CertificationId": "878f98e2-9227-46f0-97cf-42a574df2112",
1269
+ "AuthorisationServerId": "ce868ca5-0b99-47e6-b8cd-e26aac082448",
1270
+ "Status": "Certified",
1271
+ "ProfileVariant": "name",
1272
+ "ProfileType": "ConnectID Claims",
1273
+ "ProfileVersion": 1,
1274
+ "CertificationURI": "https://cdn.dev.connectid.com.au/certification/certification-result.zip"
1275
+ },
1276
+ {
1277
+ "CertificationStartDate": "10/05/2023",
1278
+ "CertificationExpirationDate": "09/05/2099",
1279
+ "CertificationId": "0cfb4253-8ba3-4df5-bdd4-1cd8badb7a20",
1280
+ "AuthorisationServerId": "ce868ca5-0b99-47e6-b8cd-e26aac082448",
1281
+ "Status": "Certified",
1282
+ "ProfileVariant": "web",
1283
+ "ProfileType": "Channel",
1284
+ "ProfileVersion": 1,
1285
+ "CertificationURI": "https://cdn.dev.connectid.com.au/certification/certification-result.zip"
1286
+ },
1287
+ {
1288
+ "CertificationStartDate": "15/05/2023",
1289
+ "CertificationExpirationDate": "14/05/2099",
1290
+ "CertificationId": "123b529a-36f1-414c-bf93-192b3b1d6bf0",
1291
+ "AuthorisationServerId": "ce868ca5-0b99-47e6-b8cd-e26aac082448",
1292
+ "Status": "Certified",
1293
+ "ProfileVariant": "over21",
1294
+ "ProfileType": "ConnectID Claims",
1295
+ "ProfileVersion": 1,
1296
+ "CertificationURI": "https://cdn.dev.connectid.com.au/certification/certification-result.zip"
1297
+ },
1298
+ {
1299
+ "CertificationStartDate": "15/05/2023",
1300
+ "CertificationExpirationDate": "14/05/2099",
1301
+ "CertificationId": "d38fa6dc-e4c2-40e5-8e16-50a75bd45707",
1302
+ "AuthorisationServerId": "ce868ca5-0b99-47e6-b8cd-e26aac082448",
1303
+ "Status": "Certified",
1304
+ "ProfileVariant": "beneficiary_account_au_payid",
1305
+ "ProfileType": "ConnectID Claims",
1306
+ "ProfileVersion": 1,
1307
+ "CertificationURI": "https://cdn.dev.connectid.com.au/certification/certification-result.zip"
1308
+ }
1309
+ ],
1310
+ "CustomerFriendlyDescription": "Bank N",
1311
+ "CustomerFriendlyLogoUri": "https://static.sandbox.connectid.com.au/BankN.svg",
1312
+ "CustomerFriendlyName": "Mock Bank N",
1313
+ "DeveloperPortalUri": null,
1314
+ "TermsOfServiceUri": null,
1315
+ "NotificationWebhookAddedDate": null,
1316
+ "OpenIDDiscoveryDocument": "https://auth.bank3.directory.sandbox.connectid.com.au/.well-known/openid-configuration",
1317
+ "Issuer": "https://auth.bank3.directory.sandbox.connectid.com.au",
1318
+ "PayloadSigningCertLocationUri": "https://auth.bank3.directory.sandbox.connectid.com.au/na",
1319
+ "CreatedAt": 1659631521,
1320
+ "ParentAuthorisationServerId": null,
1321
+ "DeprecatedDate": null,
1322
+ "RetirementDate": null,
1323
+ "SupersededByAuthorisationServerId": null
1324
+ },
1325
+ {
1326
+ "AuthorisationServerId": "efc44d17-d137-4d41-8601-80f632c1b109",
1327
+ "AutoRegistrationSupported": true,
1328
+ "AutoRegistrationNotificationWebhook": "https://auth.bank4.directory.sandbox.connectid.com.au/ssonboard/webhook",
1329
+ "SupportsCiba": false,
1330
+ "SupportsDCR": false,
1331
+ "SupportsRedirect": true,
1332
+ "ApiResources": [],
1333
+ "AuthorisationServerCertifications": [
1334
+ {
1335
+ "CertificationStartDate": "15/05/2023",
1336
+ "CertificationExpirationDate": "14/05/2024",
1337
+ "CertificationId": "1b1a55dc-e385-4424-9fb7-3b06d64c0e2c",
1338
+ "AuthorisationServerId": "efc44d17-d137-4d41-8601-80f632c1b109",
1339
+ "Status": "Certified",
1340
+ "ProfileVariant": "birthdate",
1341
+ "ProfileType": "ConnectID Claims",
1342
+ "ProfileVersion": 1,
1343
+ "CertificationURI": "https://cdn.dev.connectid.com.au/certification/certification-result.zip"
1344
+ },
1345
+ {
1346
+ "CertificationStartDate": "15/05/2023",
1347
+ "CertificationExpirationDate": "14/05/2024",
1348
+ "CertificationId": "2fb0ea45-35a8-4c5d-9cbe-643fbbfe09e2",
1349
+ "AuthorisationServerId": "efc44d17-d137-4d41-8601-80f632c1b109",
1350
+ "Status": "Certified",
1351
+ "ProfileVariant": "beneficiary_account_au_payid",
1352
+ "ProfileType": "ConnectID Claims",
1353
+ "ProfileVersion": 1,
1354
+ "CertificationURI": "https://cdn.dev.connectid.com.au/certification/certification-result.zip"
1355
+ },
1356
+ {
1357
+ "CertificationStartDate": "15/05/2023",
1358
+ "CertificationExpirationDate": "14/05/2024",
1359
+ "CertificationId": "fd2b5b25-8220-40b1-92e6-31991d2e8a5e",
1360
+ "AuthorisationServerId": "efc44d17-d137-4d41-8601-80f632c1b109",
1361
+ "Status": "Certified",
1362
+ "ProfileVariant": "address",
1363
+ "ProfileType": "ConnectID Claims",
1364
+ "ProfileVersion": 1,
1365
+ "CertificationURI": "https://cdn.dev.connectid.com.au/certification/certification-result.zip"
1366
+ },
1367
+ {
1368
+ "CertificationStartDate": "15/05/2023",
1369
+ "CertificationExpirationDate": "14/05/2024",
1370
+ "CertificationId": "5599240d-19a6-45a1-aa05-db5bf9520f4e",
1371
+ "AuthorisationServerId": "efc44d17-d137-4d41-8601-80f632c1b109",
1372
+ "Status": "Certified",
1373
+ "ProfileVariant": "over21",
1374
+ "ProfileType": "ConnectID Claims",
1375
+ "ProfileVersion": 1,
1376
+ "CertificationURI": "https://cdn.dev.connectid.com.au/certification/certification-result.zip"
1377
+ },
1378
+ {
1379
+ "CertificationStartDate": "15/05/2023",
1380
+ "CertificationExpirationDate": "14/05/2024",
1381
+ "CertificationId": "47ade33f-09af-447e-80ea-fe8c95464928",
1382
+ "AuthorisationServerId": "efc44d17-d137-4d41-8601-80f632c1b109",
1383
+ "Status": "Certified",
1384
+ "ProfileVariant": "over65",
1385
+ "ProfileType": "ConnectID Claims",
1386
+ "ProfileVersion": 1,
1387
+ "CertificationURI": "https://cdn.dev.connectid.com.au/certification/certification-result.zip"
1388
+ },
1389
+ {
1390
+ "CertificationStartDate": "06/08/2022",
1391
+ "CertificationExpirationDate": "06/08/2029",
1392
+ "CertificationId": "96736ce3-40cc-4984-b38d-18abe9ddc289",
1393
+ "AuthorisationServerId": "efc44d17-d137-4d41-8601-80f632c1b109",
1394
+ "Status": "Certified",
1395
+ "ProfileVariant": "FAPI2 Adv. OP w/Private Key, PAR",
1396
+ "ProfileType": "Redirect",
1397
+ "ProfileVersion": 2,
1398
+ "CertificationURI": "https://static.relyingparty.net/text.zip"
1399
+ },
1400
+ {
1401
+ "CertificationStartDate": "11/05/2023",
1402
+ "CertificationExpirationDate": "10/05/2024",
1403
+ "CertificationId": "ea9b6509-2770-4a6a-8723-737a96fbe4c9",
1404
+ "AuthorisationServerId": "efc44d17-d137-4d41-8601-80f632c1b109",
1405
+ "Status": "Certified",
1406
+ "ProfileVariant": "Identity Provider",
1407
+ "ProfileType": "TDIF Accreditation",
1408
+ "ProfileVersion": 1,
1409
+ "CertificationURI": "https://cdn.dev.connectid.com.au/certification/certification-result.zip"
1410
+ },
1411
+ {
1412
+ "CertificationStartDate": "15/05/2023",
1413
+ "CertificationExpirationDate": "14/05/2024",
1414
+ "CertificationId": "b37af27a-9d32-4b6c-9a8b-17100ed4cce1",
1415
+ "AuthorisationServerId": "efc44d17-d137-4d41-8601-80f632c1b109",
1416
+ "Status": "Certified",
1417
+ "ProfileVariant": "name",
1418
+ "ProfileType": "ConnectID Claims",
1419
+ "ProfileVersion": 1,
1420
+ "CertificationURI": "https://cdn.dev.connectid.com.au/certification/certification-result.zip"
1421
+ },
1422
+ {
1423
+ "CertificationStartDate": "15/05/2023",
1424
+ "CertificationExpirationDate": "14/05/2024",
1425
+ "CertificationId": "7874bcce-b15c-4480-934b-928fb5ddfd08",
1426
+ "AuthorisationServerId": "efc44d17-d137-4d41-8601-80f632c1b109",
1427
+ "Status": "Certified",
1428
+ "ProfileVariant": "beneficiary_account_international",
1429
+ "ProfileType": "ConnectID Claims",
1430
+ "ProfileVersion": 1,
1431
+ "CertificationURI": "https://cdn.dev.connectid.com.au/certification/certification-result.zip"
1432
+ },
1433
+ {
1434
+ "CertificationStartDate": "15/05/2023",
1435
+ "CertificationExpirationDate": "14/05/2024",
1436
+ "CertificationId": "15d73b19-45e1-43b0-922e-0b01106d9e52",
1437
+ "AuthorisationServerId": "efc44d17-d137-4d41-8601-80f632c1b109",
1438
+ "Status": "Certified",
1439
+ "ProfileVariant": "phone_number",
1440
+ "ProfileType": "ConnectID Claims",
1441
+ "ProfileVersion": 1,
1442
+ "CertificationURI": "https://cdn.dev.connectid.com.au/certification/certification-result.zip"
1443
+ },
1444
+ {
1445
+ "CertificationStartDate": "15/05/2023",
1446
+ "CertificationExpirationDate": "14/05/2024",
1447
+ "CertificationId": "e4d89f40-9754-4fe5-95a3-29ccc5051c12",
1448
+ "AuthorisationServerId": "efc44d17-d137-4d41-8601-80f632c1b109",
1449
+ "Status": "Certified",
1450
+ "ProfileVariant": "beneficiary_account_au",
1451
+ "ProfileType": "ConnectID Claims",
1452
+ "ProfileVersion": 1,
1453
+ "CertificationURI": "https://cdn.dev.connectid.com.au/certification/certification-result.zip"
1454
+ },
1455
+ {
1456
+ "CertificationStartDate": "15/05/2023",
1457
+ "CertificationExpirationDate": "14/05/2024",
1458
+ "CertificationId": "1c232033-f86e-4d26-90a8-3d3f3425a3e6",
1459
+ "AuthorisationServerId": "efc44d17-d137-4d41-8601-80f632c1b109",
1460
+ "Status": "Certified",
1461
+ "ProfileVariant": "over16",
1462
+ "ProfileType": "ConnectID Claims",
1463
+ "ProfileVersion": 1,
1464
+ "CertificationURI": "https://cdn.dev.connectid.com.au/certification/certification-result.zip"
1465
+ },
1466
+ {
1467
+ "CertificationStartDate": "10/05/2023",
1468
+ "CertificationExpirationDate": "09/05/2024",
1469
+ "CertificationId": "93ffc59c-1655-430e-a5f5-f6ef860bb303",
1470
+ "AuthorisationServerId": "efc44d17-d137-4d41-8601-80f632c1b109",
1471
+ "Status": "Certified",
1472
+ "ProfileVariant": "web",
1473
+ "ProfileType": "Channel",
1474
+ "ProfileVersion": 1,
1475
+ "CertificationURI": "https://cdn.dev.connectid.com.au/certification/certification-result.zip"
1476
+ },
1477
+ {
1478
+ "CertificationStartDate": "15/05/2023",
1479
+ "CertificationExpirationDate": "14/05/2024",
1480
+ "CertificationId": "6680cbfb-fbbc-49c6-b65d-83741801bfe0",
1481
+ "AuthorisationServerId": "efc44d17-d137-4d41-8601-80f632c1b109",
1482
+ "Status": "Certified",
1483
+ "ProfileVariant": "over18",
1484
+ "ProfileType": "ConnectID Claims",
1485
+ "ProfileVersion": 1,
1486
+ "CertificationURI": "https://cdn.dev.connectid.com.au/certification/certification-result.zip"
1487
+ },
1488
+ {
1489
+ "CertificationStartDate": "15/05/2023",
1490
+ "CertificationExpirationDate": "14/05/2024",
1491
+ "CertificationId": "3903b3de-76a5-4bec-a9d6-7f6ca3e2742c",
1492
+ "AuthorisationServerId": "efc44d17-d137-4d41-8601-80f632c1b109",
1493
+ "Status": "Certified",
1494
+ "ProfileVariant": "email",
1495
+ "ProfileType": "ConnectID Claims",
1496
+ "ProfileVersion": 1,
1497
+ "CertificationURI": "https://cdn.dev.connectid.com.au/certification/certification-result.zip"
1498
+ },
1499
+ {
1500
+ "CertificationStartDate": "15/05/2023",
1501
+ "CertificationExpirationDate": "14/05/2024",
1502
+ "CertificationId": "d6675f31-35f5-4788-8661-ecbb809faf31",
1503
+ "AuthorisationServerId": "efc44d17-d137-4d41-8601-80f632c1b109",
1504
+ "Status": "Certified",
1505
+ "ProfileVariant": "over25",
1506
+ "ProfileType": "ConnectID Claims",
1507
+ "ProfileVersion": 1,
1508
+ "CertificationURI": "https://cdn.dev.connectid.com.au/certification/certification-result.zip"
1509
+ }
1510
+ ],
1511
+ "CustomerFriendlyDescription": "Bank W",
1512
+ "CustomerFriendlyLogoUri": "https://static.sandbox.connectid.com.au/BankW.svg",
1513
+ "CustomerFriendlyName": "Mock Bank W",
1514
+ "DeveloperPortalUri": "https://auth.bank4.directory.sandbox.connectid.com.au/developer",
1515
+ "TermsOfServiceUri": null,
1516
+ "NotificationWebhookAddedDate": null,
1517
+ "OpenIDDiscoveryDocument": "https://auth.bank4.directory.sandbox.connectid.com.au/.well-known/openid-configuration",
1518
+ "Issuer": "https://auth.bank4.directory.sandbox.connectid.com.au",
1519
+ "PayloadSigningCertLocationUri": "https://auth.bank4.directory.sandbox.connectid.com.au/na",
1520
+ "CreatedAt": 1659631571,
1521
+ "ParentAuthorisationServerId": null,
1522
+ "DeprecatedDate": null,
1523
+ "RetirementDate": null,
1524
+ "SupersededByAuthorisationServerId": null
1525
+ },
1526
+ {
1527
+ "AuthorisationServerId": "abd2a7e0-ebdf-4302-b059-d8878d1ef41a",
1528
+ "AutoRegistrationSupported": true,
1529
+ "AutoRegistrationNotificationWebhook": "https://auth.bank2.directory.sandbox.connectid.com.au/ssonboard/webhook",
1530
+ "SupportsCiba": false,
1531
+ "SupportsDCR": false,
1532
+ "SupportsRedirect": true,
1533
+ "ApiResources": [],
1534
+ "AuthorisationServerCertifications": [
1535
+ {
1536
+ "CertificationStartDate": "15/05/2023",
1537
+ "CertificationExpirationDate": "14/05/2024",
1538
+ "CertificationId": "3167eded-5c33-467a-bf8c-8d7fff447a25",
1539
+ "AuthorisationServerId": "abd2a7e0-ebdf-4302-b059-d8878d1ef41a",
1540
+ "Status": "Certified",
1541
+ "ProfileVariant": "beneficiary_account_international",
1542
+ "ProfileType": "ConnectID Claims",
1543
+ "ProfileVersion": 1,
1544
+ "CertificationURI": "https://cdn.dev.connectid.com.au/certification/certification-result.zip"
1545
+ },
1546
+ {
1547
+ "CertificationStartDate": "15/05/2023",
1548
+ "CertificationExpirationDate": "14/05/2024",
1549
+ "CertificationId": "08ec8b2b-6ceb-4d59-80a7-cdf8b0c997b5",
1550
+ "AuthorisationServerId": "abd2a7e0-ebdf-4302-b059-d8878d1ef41a",
1551
+ "Status": "Certified",
1552
+ "ProfileVariant": "email",
1553
+ "ProfileType": "ConnectID Claims",
1554
+ "ProfileVersion": 1,
1555
+ "CertificationURI": "https://cdn.dev.connectid.com.au/certification/certification-result.zip"
1556
+ },
1557
+ {
1558
+ "CertificationStartDate": "15/05/2023",
1559
+ "CertificationExpirationDate": "14/05/2024",
1560
+ "CertificationId": "77c7152e-2607-483b-873b-59ee6115e544",
1561
+ "AuthorisationServerId": "abd2a7e0-ebdf-4302-b059-d8878d1ef41a",
1562
+ "Status": "Certified",
1563
+ "ProfileVariant": "address",
1564
+ "ProfileType": "ConnectID Claims",
1565
+ "ProfileVersion": 1,
1566
+ "CertificationURI": "https://cdn.dev.connectid.com.au/certification/certification-result.zip"
1567
+ },
1568
+ {
1569
+ "CertificationStartDate": "15/05/2023",
1570
+ "CertificationExpirationDate": "14/05/2024",
1571
+ "CertificationId": "b36acc5b-da6f-4644-acea-0130cf088bfd",
1572
+ "AuthorisationServerId": "abd2a7e0-ebdf-4302-b059-d8878d1ef41a",
1573
+ "Status": "Certified",
1574
+ "ProfileVariant": "beneficiary_account_au",
1575
+ "ProfileType": "ConnectID Claims",
1576
+ "ProfileVersion": 1,
1577
+ "CertificationURI": "https://cdn.dev.connectid.com.au/certification/certification-result.zip"
1578
+ },
1579
+ {
1580
+ "CertificationStartDate": "15/05/2023",
1581
+ "CertificationExpirationDate": "14/05/2024",
1582
+ "CertificationId": "87171aca-62b8-420d-a766-3cb42242d964",
1583
+ "AuthorisationServerId": "abd2a7e0-ebdf-4302-b059-d8878d1ef41a",
1584
+ "Status": "Certified",
1585
+ "ProfileVariant": "birthdate",
1586
+ "ProfileType": "ConnectID Claims",
1587
+ "ProfileVersion": 1,
1588
+ "CertificationURI": "https://cdn.dev.connectid.com.au/certification/certification-result.zip"
1589
+ },
1590
+ {
1591
+ "CertificationStartDate": "15/05/2023",
1592
+ "CertificationExpirationDate": "14/05/2024",
1593
+ "CertificationId": "b5401a45-27be-4bca-92d7-6d78663780c7",
1594
+ "AuthorisationServerId": "abd2a7e0-ebdf-4302-b059-d8878d1ef41a",
1595
+ "Status": "Certified",
1596
+ "ProfileVariant": "over21",
1597
+ "ProfileType": "ConnectID Claims",
1598
+ "ProfileVersion": 1,
1599
+ "CertificationURI": "https://cdn.dev.connectid.com.au/certification/certification-result.zip"
1600
+ },
1601
+ {
1602
+ "CertificationStartDate": "15/05/2023",
1603
+ "CertificationExpirationDate": "14/05/2024",
1604
+ "CertificationId": "9aefc07d-91e6-409f-83ba-93997206b1d7",
1605
+ "AuthorisationServerId": "abd2a7e0-ebdf-4302-b059-d8878d1ef41a",
1606
+ "Status": "Certified",
1607
+ "ProfileVariant": "over16",
1608
+ "ProfileType": "ConnectID Claims",
1609
+ "ProfileVersion": 1,
1610
+ "CertificationURI": "https://cdn.dev.connectid.com.au/certification/certification-result.zip"
1611
+ },
1612
+ {
1613
+ "CertificationStartDate": "09/08/2022",
1614
+ "CertificationExpirationDate": "09/08/2029",
1615
+ "CertificationId": "0ecfc802-b090-450a-bdaf-956f00a997e2",
1616
+ "AuthorisationServerId": "abd2a7e0-ebdf-4302-b059-d8878d1ef41a",
1617
+ "Status": "Certified",
1618
+ "ProfileVariant": "FAPI2 Adv. OP w/Private Key, PAR",
1619
+ "ProfileType": "Redirect",
1620
+ "ProfileVersion": 2,
1621
+ "CertificationURI": "https://static.relyingparty.net/text.zip"
1622
+ },
1623
+ {
1624
+ "CertificationStartDate": "10/05/2023",
1625
+ "CertificationExpirationDate": "09/05/2024",
1626
+ "CertificationId": "c711b2ea-db61-4685-a903-d6d646327b53",
1627
+ "AuthorisationServerId": "abd2a7e0-ebdf-4302-b059-d8878d1ef41a",
1628
+ "Status": "Certified",
1629
+ "ProfileVariant": "web",
1630
+ "ProfileType": "Channel",
1631
+ "ProfileVersion": 1,
1632
+ "CertificationURI": "https://cdn.dev.connectid.com.au/certification/certification-result.zip"
1633
+ },
1634
+ {
1635
+ "CertificationStartDate": "15/05/2023",
1636
+ "CertificationExpirationDate": "14/05/2024",
1637
+ "CertificationId": "5bf07a24-ec9b-4226-a1b6-6c53716b8372",
1638
+ "AuthorisationServerId": "abd2a7e0-ebdf-4302-b059-d8878d1ef41a",
1639
+ "Status": "Certified",
1640
+ "ProfileVariant": "address",
1641
+ "ProfileType": "ConnectID Claims",
1642
+ "ProfileVersion": 1,
1643
+ "CertificationURI": "https://cdn.dev.connectid.com.au/certification/certification-result.zip"
1644
+ },
1645
+ {
1646
+ "CertificationStartDate": "15/05/2023",
1647
+ "CertificationExpirationDate": "14/05/2024",
1648
+ "CertificationId": "47710e8d-4225-45b9-8148-b02bb5288c4f",
1649
+ "AuthorisationServerId": "abd2a7e0-ebdf-4302-b059-d8878d1ef41a",
1650
+ "Status": "Certified",
1651
+ "ProfileVariant": "beneficiary_account_au_payid",
1652
+ "ProfileType": "ConnectID Claims",
1653
+ "ProfileVersion": 1,
1654
+ "CertificationURI": "https://cdn.dev.connectid.com.au/certification/certification-result.zip"
1655
+ },
1656
+ {
1657
+ "CertificationStartDate": "15/05/2023",
1658
+ "CertificationExpirationDate": "14/05/2024",
1659
+ "CertificationId": "02a151aa-fd67-4248-b66a-8d19fff246db",
1660
+ "AuthorisationServerId": "abd2a7e0-ebdf-4302-b059-d8878d1ef41a",
1661
+ "Status": "Certified",
1662
+ "ProfileVariant": "phone_number",
1663
+ "ProfileType": "ConnectID Claims",
1664
+ "ProfileVersion": 1,
1665
+ "CertificationURI": "https://cdn.dev.connectid.com.au/certification/certification-result.zip"
1666
+ },
1667
+ {
1668
+ "CertificationStartDate": "15/05/2023",
1669
+ "CertificationExpirationDate": "14/05/2024",
1670
+ "CertificationId": "360b1c23-af88-49df-9365-201fd2cf97c3",
1671
+ "AuthorisationServerId": "abd2a7e0-ebdf-4302-b059-d8878d1ef41a",
1672
+ "Status": "Certified",
1673
+ "ProfileVariant": "over65",
1674
+ "ProfileType": "ConnectID Claims",
1675
+ "ProfileVersion": 1,
1676
+ "CertificationURI": "https://cdn.dev.connectid.com.au/certification/certification-result.zip"
1677
+ },
1678
+ {
1679
+ "CertificationStartDate": "15/05/2023",
1680
+ "CertificationExpirationDate": "14/05/2024",
1681
+ "CertificationId": "4f749d12-3cd1-40ee-b5bd-0d4756721a50",
1682
+ "AuthorisationServerId": "abd2a7e0-ebdf-4302-b059-d8878d1ef41a",
1683
+ "Status": "Certified",
1684
+ "ProfileVariant": "over25",
1685
+ "ProfileType": "ConnectID Claims",
1686
+ "ProfileVersion": 1,
1687
+ "CertificationURI": "https://cdn.dev.connectid.com.au/certification/certification-result.zip"
1688
+ },
1689
+ {
1690
+ "CertificationStartDate": "22/03/2023",
1691
+ "CertificationExpirationDate": "21/03/2024",
1692
+ "CertificationId": "979fe2a6-49c9-4908-aae2-af1a077b9e63",
1693
+ "AuthorisationServerId": "abd2a7e0-ebdf-4302-b059-d8878d1ef41a",
1694
+ "Status": "Certified",
1695
+ "ProfileVariant": "Identity Provider",
1696
+ "ProfileType": "TDIF Accreditation",
1697
+ "ProfileVersion": 1,
1698
+ "CertificationURI": "https://cdn.dev.connectid.com.au/certification/certification-result.zip"
1699
+ },
1700
+ {
1701
+ "CertificationStartDate": "15/05/2023",
1702
+ "CertificationExpirationDate": "14/05/2024",
1703
+ "CertificationId": "cfa42329-cf64-4818-83ec-1fd12b2a4662",
1704
+ "AuthorisationServerId": "abd2a7e0-ebdf-4302-b059-d8878d1ef41a",
1705
+ "Status": "Certified",
1706
+ "ProfileVariant": "over18",
1707
+ "ProfileType": "ConnectID Claims",
1708
+ "ProfileVersion": 1,
1709
+ "CertificationURI": "https://cdn.dev.connectid.com.au/certification/certification-result.zip"
1710
+ },
1711
+ {
1712
+ "CertificationStartDate": "15/05/2023",
1713
+ "CertificationExpirationDate": "14/05/2024",
1714
+ "CertificationId": "e121bb43-9388-45e1-81d1-efeb26c005b3",
1715
+ "AuthorisationServerId": "abd2a7e0-ebdf-4302-b059-d8878d1ef41a",
1716
+ "Status": "Certified",
1717
+ "ProfileVariant": "name",
1718
+ "ProfileType": "ConnectID Claims",
1719
+ "ProfileVersion": 1,
1720
+ "CertificationURI": "https://cdn.dev.connectid.com.au/certification/certification-result.zip"
1721
+ }
1722
+ ],
1723
+ "CustomerFriendlyDescription": "Bank C",
1724
+ "CustomerFriendlyLogoUri": "https://static.sandbox.connectid.com.au/BankC.svg",
1725
+ "CustomerFriendlyName": "Mock Bank C",
1726
+ "DeveloperPortalUri": null,
1727
+ "TermsOfServiceUri": null,
1728
+ "NotificationWebhookAddedDate": null,
1729
+ "OpenIDDiscoveryDocument": "https://auth.bank2.directory.sandbox.connectid.com.au/.well-known/openid-configuration",
1730
+ "Issuer": "https://auth.bank2.directory.sandbox.connectid.com.au",
1731
+ "PayloadSigningCertLocationUri": "https://auth.bank2.directory.sandbox.connectid.com.au/na",
1732
+ "CreatedAt": 1659631475,
1733
+ "ParentAuthorisationServerId": null,
1734
+ "DeprecatedDate": null,
1735
+ "RetirementDate": null,
1736
+ "SupersededByAuthorisationServerId": null
1737
+ },
1738
+ {
1739
+ "AuthorisationServerId": "4eda0f66-1a05-46ef-8746-8347c996cc7d",
1740
+ "AutoRegistrationSupported": true,
1741
+ "AutoRegistrationNotificationWebhook": "https://auth.bank1.directory.sandbox.connectid.com.au/ssonboard/webhook",
1742
+ "SupportsCiba": false,
1743
+ "SupportsDCR": false,
1744
+ "SupportsRedirect": true,
1745
+ "ApiResources": [],
1746
+ "AuthorisationServerCertifications": [
1747
+ {
1748
+ "CertificationStartDate": "14/05/2023",
1749
+ "CertificationExpirationDate": "13/05/2024",
1750
+ "CertificationId": "2eacadff-82d4-4608-b844-c246256f43ec",
1751
+ "AuthorisationServerId": "4eda0f66-1a05-46ef-8746-8347c996cc7d",
1752
+ "Status": "Certified",
1753
+ "ProfileVariant": "web",
1754
+ "ProfileType": "Channel",
1755
+ "ProfileVersion": 1,
1756
+ "CertificationURI": "https://cdn.dev.connectid.com.au/certification/certification-result.zip"
1757
+ },
1758
+ {
1759
+ "CertificationStartDate": "14/05/2023",
1760
+ "CertificationExpirationDate": "13/05/2024",
1761
+ "CertificationId": "9a1a4223-6979-43d7-8fc9-5647d473dd7b",
1762
+ "AuthorisationServerId": "4eda0f66-1a05-46ef-8746-8347c996cc7d",
1763
+ "Status": "Certified",
1764
+ "ProfileVariant": "beneficiary_account_au",
1765
+ "ProfileType": "ConnectID Claims",
1766
+ "ProfileVersion": 1,
1767
+ "CertificationURI": "https://cdn.dev.connectid.com.au/certification/certification-result.zip"
1768
+ },
1769
+ {
1770
+ "CertificationStartDate": "14/05/2023",
1771
+ "CertificationExpirationDate": "13/05/2024",
1772
+ "CertificationId": "c8b33c09-2b63-4243-b598-006cd22051bf",
1773
+ "AuthorisationServerId": "4eda0f66-1a05-46ef-8746-8347c996cc7d",
1774
+ "Status": "Certified",
1775
+ "ProfileVariant": "beneficiary_account_international",
1776
+ "ProfileType": "ConnectID Claims",
1777
+ "ProfileVersion": 1,
1778
+ "CertificationURI": "https://cdn.dev.connectid.com.au/certification/certification-result.zip"
1779
+ },
1780
+ {
1781
+ "CertificationStartDate": "14/05/2023",
1782
+ "CertificationExpirationDate": "13/05/2024",
1783
+ "CertificationId": "0771d576-f13f-4169-82e5-3f850adade65",
1784
+ "AuthorisationServerId": "4eda0f66-1a05-46ef-8746-8347c996cc7d",
1785
+ "Status": "Certified",
1786
+ "ProfileVariant": "over25",
1787
+ "ProfileType": "ConnectID Claims",
1788
+ "ProfileVersion": 1,
1789
+ "CertificationURI": "https://cdn.dev.connectid.com.au/certification/certification-result.zip"
1790
+ },
1791
+ {
1792
+ "CertificationStartDate": "14/05/2023",
1793
+ "CertificationExpirationDate": "13/05/2024",
1794
+ "CertificationId": "a1b39c04-1111-4f43-8305-f70437601fda",
1795
+ "AuthorisationServerId": "4eda0f66-1a05-46ef-8746-8347c996cc7d",
1796
+ "Status": "Certified",
1797
+ "ProfileVariant": "address",
1798
+ "ProfileType": "ConnectID Claims",
1799
+ "ProfileVersion": 1,
1800
+ "CertificationURI": "https://cdn.dev.connectid.com.au/certification/certification-result.zip"
1801
+ },
1802
+ {
1803
+ "CertificationStartDate": "14/05/2023",
1804
+ "CertificationExpirationDate": "13/05/2024",
1805
+ "CertificationId": "43980c88-de14-4ee0-af12-680ef216d236",
1806
+ "AuthorisationServerId": "4eda0f66-1a05-46ef-8746-8347c996cc7d",
1807
+ "Status": "Certified",
1808
+ "ProfileVariant": "over18",
1809
+ "ProfileType": "ConnectID Claims",
1810
+ "ProfileVersion": 1,
1811
+ "CertificationURI": "https://cdn.dev.connectid.com.au/certification/certification-result.zip"
1812
+ },
1813
+ {
1814
+ "CertificationStartDate": "10/08/2022",
1815
+ "CertificationExpirationDate": "10/08/2023",
1816
+ "CertificationId": "8802e311-fb01-4ab2-9902-3a156a2d5bc4",
1817
+ "AuthorisationServerId": "4eda0f66-1a05-46ef-8746-8347c996cc7d",
1818
+ "Status": "Certified",
1819
+ "ProfileVariant": "FAPI2 Adv. OP w/Private Key, PAR",
1820
+ "ProfileType": "Redirect",
1821
+ "ProfileVersion": 2,
1822
+ "CertificationURI": "https://static.relyingparty.net/text.zip"
1823
+ },
1824
+ {
1825
+ "CertificationStartDate": "14/05/2023",
1826
+ "CertificationExpirationDate": "13/05/2024",
1827
+ "CertificationId": "8465bbb4-0adc-4078-acd2-779e5d09037f",
1828
+ "AuthorisationServerId": "4eda0f66-1a05-46ef-8746-8347c996cc7d",
1829
+ "Status": "Certified",
1830
+ "ProfileVariant": "email",
1831
+ "ProfileType": "ConnectID Claims",
1832
+ "ProfileVersion": 1,
1833
+ "CertificationURI": "https://cdn.dev.connectid.com.au/certification/certification-result.zip"
1834
+ },
1835
+ {
1836
+ "CertificationStartDate": "14/05/2023",
1837
+ "CertificationExpirationDate": "13/05/2024",
1838
+ "CertificationId": "ab5e6a2b-8952-40c4-98eb-fdcd6e31c1e6",
1839
+ "AuthorisationServerId": "4eda0f66-1a05-46ef-8746-8347c996cc7d",
1840
+ "Status": "Certified",
1841
+ "ProfileVariant": "beneficiary_account_au_payid",
1842
+ "ProfileType": "ConnectID Claims",
1843
+ "ProfileVersion": 1,
1844
+ "CertificationURI": "https://cdn.dev.connectid.com.au/certification/certification-result.zip"
1845
+ },
1846
+ {
1847
+ "CertificationStartDate": "14/05/2023",
1848
+ "CertificationExpirationDate": "13/05/2024",
1849
+ "CertificationId": "e51041d1-8585-4fac-a78d-ee47aa0ce3a3",
1850
+ "AuthorisationServerId": "4eda0f66-1a05-46ef-8746-8347c996cc7d",
1851
+ "Status": "Certified",
1852
+ "ProfileVariant": "over65",
1853
+ "ProfileType": "ConnectID Claims",
1854
+ "ProfileVersion": 1,
1855
+ "CertificationURI": "https://cdn.dev.connectid.com.au/certification/certification-result.zip"
1856
+ },
1857
+ {
1858
+ "CertificationStartDate": "14/05/2023",
1859
+ "CertificationExpirationDate": "13/05/2024",
1860
+ "CertificationId": "841a8b9e-1ed4-4f3e-adf9-65f74d3eb4dc",
1861
+ "AuthorisationServerId": "4eda0f66-1a05-46ef-8746-8347c996cc7d",
1862
+ "Status": "Certified",
1863
+ "ProfileVariant": "over16",
1864
+ "ProfileType": "ConnectID Claims",
1865
+ "ProfileVersion": 1,
1866
+ "CertificationURI": "https://cdn.dev.connectid.com.au/certification/certification-result.zip"
1867
+ },
1868
+ {
1869
+ "CertificationStartDate": "14/05/2023",
1870
+ "CertificationExpirationDate": "13/05/2024",
1871
+ "CertificationId": "d745fa15-2a71-451f-a2df-0ca7066f7e40",
1872
+ "AuthorisationServerId": "4eda0f66-1a05-46ef-8746-8347c996cc7d",
1873
+ "Status": "Certified",
1874
+ "ProfileVariant": "over21",
1875
+ "ProfileType": "ConnectID Claims",
1876
+ "ProfileVersion": 1,
1877
+ "CertificationURI": "https://cdn.dev.connectid.com.au/certification/certification-result.zip"
1878
+ },
1879
+ {
1880
+ "CertificationStartDate": "14/05/2023",
1881
+ "CertificationExpirationDate": "13/05/2024",
1882
+ "CertificationId": "b7923682-5063-4b97-80d7-a179e8303e83",
1883
+ "AuthorisationServerId": "4eda0f66-1a05-46ef-8746-8347c996cc7d",
1884
+ "Status": "Certified",
1885
+ "ProfileVariant": "phone_number",
1886
+ "ProfileType": "ConnectID Claims",
1887
+ "ProfileVersion": 1,
1888
+ "CertificationURI": "https://cdn.dev.connectid.com.au/certification/certification-result.zip"
1889
+ },
1890
+ {
1891
+ "CertificationStartDate": "14/05/2023",
1892
+ "CertificationExpirationDate": "13/05/2024",
1893
+ "CertificationId": "18f879f7-e10a-40f8-8638-03522fa56c88",
1894
+ "AuthorisationServerId": "4eda0f66-1a05-46ef-8746-8347c996cc7d",
1895
+ "Status": "Certified",
1896
+ "ProfileVariant": "birthdate",
1897
+ "ProfileType": "ConnectID Claims",
1898
+ "ProfileVersion": 1,
1899
+ "CertificationURI": "https://cdn.dev.connectid.com.au/certification/certification-result.zip"
1900
+ },
1901
+ {
1902
+ "CertificationStartDate": "14/05/2023",
1903
+ "CertificationExpirationDate": "13/05/2024",
1904
+ "CertificationId": "1792b589-4eb0-41b4-9448-ded0f4fe5f0c",
1905
+ "AuthorisationServerId": "4eda0f66-1a05-46ef-8746-8347c996cc7d",
1906
+ "Status": "Certified",
1907
+ "ProfileVariant": "name",
1908
+ "ProfileType": "ConnectID Claims",
1909
+ "ProfileVersion": 1,
1910
+ "CertificationURI": "https://cdn.dev.connectid.com.au/certification/certification-result.zip"
1911
+ }
1912
+ ],
1913
+ "CustomerFriendlyDescription": "Bank A",
1914
+ "CustomerFriendlyLogoUri": "https://static.sandbox.connectid.com.au/BankA.svg",
1915
+ "CustomerFriendlyName": "Mock Bank A",
1916
+ "DeveloperPortalUri": null,
1917
+ "TermsOfServiceUri": null,
1918
+ "NotificationWebhookAddedDate": "2022-08-04",
1919
+ "OpenIDDiscoveryDocument": "https://auth.bank1.directory.sandbox.connectid.com.au/.well-known/openid-configuration",
1920
+ "Issuer": "https://auth.bank1.directory.sandbox.connectid.com.au",
1921
+ "PayloadSigningCertLocationUri": "https://auth.bank1.directory.sandbox.connectid.com.au/na",
1922
+ "CreatedAt": 1659605194,
1923
+ "ParentAuthorisationServerId": null,
1924
+ "DeprecatedDate": null,
1925
+ "RetirementDate": null,
1926
+ "SupersededByAuthorisationServerId": null
1927
+ }
1928
+ ],
1929
+ "OrgDomainClaims": [
1930
+ {
1931
+ "AuthorisationDomainName": "connectID",
1932
+ "AuthorityName": "connectID",
1933
+ "RegistrationId": "",
1934
+ "Status": "Active"
1935
+ }
1936
+ ],
1937
+ "OrgDomainRoleClaims": [
1938
+ {
1939
+ "Status": "Active",
1940
+ "AuthorisationDomain": "connectID",
1941
+ "Role": "IDP",
1942
+ "Authorisations": [],
1943
+ "RegistrationId": "IDP",
1944
+ "RoleType": "Directory",
1945
+ "Exclusive": false,
1946
+ "Metadata": []
1947
+ },
1948
+ {
1949
+ "Status": "Active",
1950
+ "AuthorisationDomain": "connectID",
1951
+ "Role": "RP-CORE",
1952
+ "Authorisations": [],
1953
+ "RegistrationId": "6f3a06f2-97cc-4132-8f9d-83f605fb7a10",
1954
+ "RoleType": "Federation",
1955
+ "Exclusive": false,
1956
+ "Metadata": [
1957
+ {
1958
+ "MetadataId": "109bcd54-2914-4f98-90b9-be2647819e7f",
1959
+ "DomainRoleName": "RP-CORE",
1960
+ "Type": "claim",
1961
+ "Name": "email"
1962
+ },
1963
+ {
1964
+ "MetadataId": "0cd7452d-6b6d-4151-b756-c99a2cfac609",
1965
+ "DomainRoleName": "RP-CORE",
1966
+ "Type": "claim",
1967
+ "Name": "phone_number"
1968
+ },
1969
+ {
1970
+ "MetadataId": "261ec1fa-a6fb-46cc-acb7-7faa0412f22a",
1971
+ "DomainRoleName": "RP-CORE",
1972
+ "Type": "claim",
1973
+ "Name": "middle_name"
1974
+ },
1975
+ {
1976
+ "MetadataId": "8872dc8d-4271-458b-b73c-7ce91b7de552",
1977
+ "DomainRoleName": "RP-CORE",
1978
+ "Type": "claim",
1979
+ "Name": "address"
1980
+ },
1981
+ {
1982
+ "MetadataId": "15fcc989-1bb6-4c87-ac3d-77bda8eb34da",
1983
+ "DomainRoleName": "RP-CORE",
1984
+ "Type": "claim",
1985
+ "Name": "name"
1986
+ },
1987
+ {
1988
+ "MetadataId": "15a13e15-cf43-41dd-9661-7a14996900ca",
1989
+ "DomainRoleName": "RP-CORE",
1990
+ "Type": "claim",
1991
+ "Name": "family_name"
1992
+ },
1993
+ {
1994
+ "MetadataId": "14f5947c-1172-49a8-a04c-8e4f89fd4503",
1995
+ "DomainRoleName": "RP-CORE",
1996
+ "Type": "scope",
1997
+ "Name": "openid"
1998
+ },
1999
+ {
2000
+ "MetadataId": "d15dc17f-8588-431c-a66d-82946d009107",
2001
+ "DomainRoleName": "RP-CORE",
2002
+ "Type": "grant_type",
2003
+ "Name": "authorization_code"
2004
+ },
2005
+ {
2006
+ "MetadataId": "c5414d68-ef52-41e6-a127-762dfae96e4e",
2007
+ "DomainRoleName": "RP-CORE",
2008
+ "Type": "claim",
2009
+ "Name": "given_name"
2010
+ },
2011
+ {
2012
+ "MetadataId": "e94b2480-f774-4858-b680-5acf24afbdb5",
2013
+ "DomainRoleName": "RP-CORE",
2014
+ "Type": "claim",
2015
+ "Name": "birthdate"
2016
+ },
2017
+ {
2018
+ "MetadataId": "6201486b-120f-4f95-b1c8-1b0fa0d71056",
2019
+ "DomainRoleName": "RP-CORE",
2020
+ "Type": "claim",
2021
+ "Name": "txn"
2022
+ },
2023
+ {
2024
+ "MetadataId": "ec9bbff4-4486-4f2f-bf0d-9d652b899542",
2025
+ "DomainRoleName": "RP-CORE",
2026
+ "Type": "response_type",
2027
+ "Name": "code"
2028
+ }
2029
+ ]
2030
+ }
2031
+ ]
2032
+ },
2033
+ {
2034
+ "OrganisationId": "a6791897-dc0f-4465-a350-00ebc731f375",
2035
+ "Status": "Active",
2036
+ "OrganisationName": "Test - CyberCX A",
2037
+ "CreatedOn": "2022-11-11T00:26:47.066Z",
2038
+ "LegalEntityName": "Test - CyberCX A",
2039
+ "CountryOfRegistration": "AU",
2040
+ "CompanyRegister": "ABN",
2041
+ "Tag": [],
2042
+ "Size": "",
2043
+ "RegistrationNumber": "123456789",
2044
+ "RegistrationId": "",
2045
+ "RegisteredName": "Test - CyberCX A",
2046
+ "AddressLine1": "Level 1",
2047
+ "AddressLine2": "255 George St",
2048
+ "City": "Sydney",
2049
+ "Postcode": "2000",
2050
+ "Country": "AU",
2051
+ "ParentOrganisationReference": "",
2052
+ "AuthorisationServers": [
2053
+ {
2054
+ "AuthorisationServerId": "d5c8628d-5e50-472b-b90c-9c22c6c5a9a7",
2055
+ "AutoRegistrationSupported": false,
2056
+ "AutoRegistrationNotificationWebhook": null,
2057
+ "SupportsCiba": false,
2058
+ "SupportsDCR": false,
2059
+ "SupportsRedirect": false,
2060
+ "ApiResources": [],
2061
+ "AuthorisationServerCertifications": [],
2062
+ "CustomerFriendlyDescription": "test",
2063
+ "CustomerFriendlyLogoUri": "https://auth.bank1.directory.sandbox.connectid.com.au/image.svg",
2064
+ "CustomerFriendlyName": "Test Server",
2065
+ "DeveloperPortalUri": null,
2066
+ "TermsOfServiceUri": null,
2067
+ "NotificationWebhookAddedDate": null,
2068
+ "OpenIDDiscoveryDocument": "https://ccx-testing-cs.sgp1.digitaloceanspaces.com/.well-known/openid-configuration.json",
2069
+ "Issuer": "https://ccxbank.sandbox.connectid.com.au",
2070
+ "PayloadSigningCertLocationUri": "https://auth.bank1.directory.sandbox.connectid.com.au/jwks",
2071
+ "CreatedAt": 1668990433,
2072
+ "ParentAuthorisationServerId": null,
2073
+ "DeprecatedDate": null,
2074
+ "RetirementDate": null,
2075
+ "SupersededByAuthorisationServerId": null
2076
+ }
2077
+ ],
2078
+ "OrgDomainClaims": [
2079
+ {
2080
+ "AuthorisationDomainName": "connectID",
2081
+ "AuthorityName": "connectID",
2082
+ "RegistrationId": "ConnectID",
2083
+ "Status": "Active"
2084
+ }
2085
+ ],
2086
+ "OrgDomainRoleClaims": [
2087
+ {
2088
+ "Status": "Active",
2089
+ "AuthorisationDomain": "connectID",
2090
+ "Role": "RP-CORE",
2091
+ "Authorisations": [],
2092
+ "RegistrationId": "RP-CORE",
2093
+ "RoleType": "Federation",
2094
+ "Exclusive": false,
2095
+ "Metadata": [
2096
+ {
2097
+ "MetadataId": "109bcd54-2914-4f98-90b9-be2647819e7f",
2098
+ "DomainRoleName": "RP-CORE",
2099
+ "Type": "claim",
2100
+ "Name": "email"
2101
+ },
2102
+ {
2103
+ "MetadataId": "0cd7452d-6b6d-4151-b756-c99a2cfac609",
2104
+ "DomainRoleName": "RP-CORE",
2105
+ "Type": "claim",
2106
+ "Name": "phone_number"
2107
+ },
2108
+ {
2109
+ "MetadataId": "261ec1fa-a6fb-46cc-acb7-7faa0412f22a",
2110
+ "DomainRoleName": "RP-CORE",
2111
+ "Type": "claim",
2112
+ "Name": "middle_name"
2113
+ },
2114
+ {
2115
+ "MetadataId": "8872dc8d-4271-458b-b73c-7ce91b7de552",
2116
+ "DomainRoleName": "RP-CORE",
2117
+ "Type": "claim",
2118
+ "Name": "address"
2119
+ },
2120
+ {
2121
+ "MetadataId": "15fcc989-1bb6-4c87-ac3d-77bda8eb34da",
2122
+ "DomainRoleName": "RP-CORE",
2123
+ "Type": "claim",
2124
+ "Name": "name"
2125
+ },
2126
+ {
2127
+ "MetadataId": "15a13e15-cf43-41dd-9661-7a14996900ca",
2128
+ "DomainRoleName": "RP-CORE",
2129
+ "Type": "claim",
2130
+ "Name": "family_name"
2131
+ },
2132
+ {
2133
+ "MetadataId": "14f5947c-1172-49a8-a04c-8e4f89fd4503",
2134
+ "DomainRoleName": "RP-CORE",
2135
+ "Type": "scope",
2136
+ "Name": "openid"
2137
+ },
2138
+ {
2139
+ "MetadataId": "d15dc17f-8588-431c-a66d-82946d009107",
2140
+ "DomainRoleName": "RP-CORE",
2141
+ "Type": "grant_type",
2142
+ "Name": "authorization_code"
2143
+ },
2144
+ {
2145
+ "MetadataId": "c5414d68-ef52-41e6-a127-762dfae96e4e",
2146
+ "DomainRoleName": "RP-CORE",
2147
+ "Type": "claim",
2148
+ "Name": "given_name"
2149
+ },
2150
+ {
2151
+ "MetadataId": "e94b2480-f774-4858-b680-5acf24afbdb5",
2152
+ "DomainRoleName": "RP-CORE",
2153
+ "Type": "claim",
2154
+ "Name": "birthdate"
2155
+ },
2156
+ {
2157
+ "MetadataId": "6201486b-120f-4f95-b1c8-1b0fa0d71056",
2158
+ "DomainRoleName": "RP-CORE",
2159
+ "Type": "claim",
2160
+ "Name": "txn"
2161
+ },
2162
+ {
2163
+ "MetadataId": "ec9bbff4-4486-4f2f-bf0d-9d652b899542",
2164
+ "DomainRoleName": "RP-CORE",
2165
+ "Type": "response_type",
2166
+ "Name": "code"
2167
+ }
2168
+ ]
2169
+ },
2170
+ {
2171
+ "Status": "Active",
2172
+ "AuthorisationDomain": "connectID",
2173
+ "Role": "IDP",
2174
+ "Authorisations": [],
2175
+ "RegistrationId": "IDP",
2176
+ "RoleType": "Directory",
2177
+ "Exclusive": false,
2178
+ "Metadata": []
2179
+ }
2180
+ ]
2181
+ },
2182
+ {
2183
+ "OrganisationId": "47fb7ce0-fc05-4652-aea2-0c74b363ffb9",
2184
+ "Status": "Active",
2185
+ "OrganisationName": "Daon",
2186
+ "CreatedOn": "2022-12-07T03:35:24.311Z",
2187
+ "LegalEntityName": "Daon",
2188
+ "CountryOfRegistration": "AU",
2189
+ "CompanyRegister": "ABN",
2190
+ "Tag": [],
2191
+ "Size": "",
2192
+ "RegistrationNumber": "30 120 521 771",
2193
+ "RegistrationId": "",
2194
+ "RegisteredName": "Daon",
2195
+ "AddressLine1": "99 Northbourne Ave",
2196
+ "AddressLine2": "",
2197
+ "City": "Turner",
2198
+ "Postcode": "2612",
2199
+ "Country": "AU",
2200
+ "ParentOrganisationReference": "",
2201
+ "AuthorisationServers": [
2202
+ {
2203
+ "AuthorisationServerId": "69653ee1-ad97-496e-8885-a9e5a5ecc2b9",
2204
+ "AutoRegistrationSupported": false,
2205
+ "AutoRegistrationNotificationWebhook": null,
2206
+ "SupportsCiba": false,
2207
+ "SupportsDCR": false,
2208
+ "SupportsRedirect": false,
2209
+ "ApiResources": [],
2210
+ "AuthorisationServerCertifications": [
2211
+ {
2212
+ "CertificationStartDate": "15/05/2023",
2213
+ "CertificationExpirationDate": "14/05/2024",
2214
+ "CertificationId": "7f9bd3dc-3002-45e1-9877-489b01138802",
2215
+ "AuthorisationServerId": "69653ee1-ad97-496e-8885-a9e5a5ecc2b9",
2216
+ "Status": "Certified",
2217
+ "ProfileVariant": "Fallback Identity Service Provider",
2218
+ "ProfileType": "ConnectID",
2219
+ "ProfileVersion": 1,
2220
+ "CertificationURI": "https://cdn.dev.connectid.com.au/certification/certification-result.zip"
2221
+ }
2222
+ ],
2223
+ "CustomerFriendlyDescription": "KC Test 3",
2224
+ "CustomerFriendlyLogoUri": "https://www.daon.com/wp-content/uploads/2021/08/identity-proofing-onboarding.svg",
2225
+ "CustomerFriendlyName": "Daon Test",
2226
+ "DeveloperPortalUri": null,
2227
+ "TermsOfServiceUri": null,
2228
+ "NotificationWebhookAddedDate": null,
2229
+ "OpenIDDiscoveryDocument": "https://sky-gum-saas-test-dobs-idp.identityx-cloud.com/auth/realms/connectidtest/.well-known/openid-configuration",
2230
+ "Issuer": "https://sky-gum-saas-test-dobs-idp.identityx-cloud.com/auth/realms/connectidtest",
2231
+ "PayloadSigningCertLocationUri": "https://sky-gum-saas-test-dobs-idp.identityx-cloud.com/auth/realms/connectidtest/protocol/openid-connect/certs",
2232
+ "CreatedAt": 1679500459,
2233
+ "ParentAuthorisationServerId": null,
2234
+ "DeprecatedDate": null,
2235
+ "RetirementDate": null,
2236
+ "SupersededByAuthorisationServerId": null
2237
+ },
2238
+ {
2239
+ "AuthorisationServerId": "3f8a3fb3-a5e6-40eb-97fd-b8f0b76927cd",
2240
+ "AutoRegistrationSupported": false,
2241
+ "AutoRegistrationNotificationWebhook": null,
2242
+ "SupportsCiba": false,
2243
+ "SupportsDCR": false,
2244
+ "SupportsRedirect": false,
2245
+ "ApiResources": [],
2246
+ "AuthorisationServerCertifications": [],
2247
+ "CustomerFriendlyDescription": "Testing Auth Server",
2248
+ "CustomerFriendlyLogoUri": "https://www.daon.com/wp-content/uploads/2021/08/identity-proofing-onboarding.svg",
2249
+ "CustomerFriendlyName": "Test Auth Server",
2250
+ "DeveloperPortalUri": null,
2251
+ "TermsOfServiceUri": null,
2252
+ "NotificationWebhookAddedDate": null,
2253
+ "OpenIDDiscoveryDocument": "https://kc20mtls-main-dobs-keycloak.identityx-build.com/realms/test/.well-known/openid-configuration",
2254
+ "Issuer": "https://kc20mtls-main-dobs-keycloak.identityx-build.com/realms/test",
2255
+ "PayloadSigningCertLocationUri": "https://kc20mtls-main-dobs-keycloak.identityx-build.com/realms/test/protocol/openid-connect/certs",
2256
+ "CreatedAt": 1672321059,
2257
+ "ParentAuthorisationServerId": null,
2258
+ "DeprecatedDate": null,
2259
+ "RetirementDate": null,
2260
+ "SupersededByAuthorisationServerId": null
2261
+ },
2262
+ {
2263
+ "AuthorisationServerId": "8f3e1e99-053b-4e83-b7c3-c9809e2bc1ff",
2264
+ "AutoRegistrationSupported": false,
2265
+ "AutoRegistrationNotificationWebhook": null,
2266
+ "SupportsCiba": false,
2267
+ "SupportsDCR": false,
2268
+ "SupportsRedirect": false,
2269
+ "ApiResources": [],
2270
+ "AuthorisationServerCertifications": [],
2271
+ "CustomerFriendlyDescription": "Daon Test (old)",
2272
+ "CustomerFriendlyLogoUri": "https://www.daon.com/wp-content/uploads/2021/08/identity-proofing-onboarding.svg",
2273
+ "CustomerFriendlyName": "Daon Test (old)",
2274
+ "DeveloperPortalUri": null,
2275
+ "TermsOfServiceUri": null,
2276
+ "NotificationWebhookAddedDate": null,
2277
+ "OpenIDDiscoveryDocument": "https://apse-saas-dobs-idp.identityx-cloud.com/auth/realms/connectidtesting/.well-known/openid-configuration",
2278
+ "Issuer": "https://apse-saas-dobs-idp.identityx-cloud.com/auth/realms/connectidtesting",
2279
+ "PayloadSigningCertLocationUri": "https://apse-saas-dobs-idp.identityx-cloud.com/auth/realms/connectidtesting/protocol/openid-connect/certs",
2280
+ "CreatedAt": 1676029338,
2281
+ "ParentAuthorisationServerId": null,
2282
+ "DeprecatedDate": null,
2283
+ "RetirementDate": null,
2284
+ "SupersededByAuthorisationServerId": null
2285
+ },
2286
+ {
2287
+ "AuthorisationServerId": "79ec7cbc-092c-4ca5-8d83-81f02c4bd090",
2288
+ "AutoRegistrationSupported": false,
2289
+ "AutoRegistrationNotificationWebhook": null,
2290
+ "SupportsCiba": false,
2291
+ "SupportsDCR": false,
2292
+ "SupportsRedirect": false,
2293
+ "ApiResources": [],
2294
+ "AuthorisationServerCertifications": [],
2295
+ "CustomerFriendlyDescription": "Daon Sandbox",
2296
+ "CustomerFriendlyLogoUri": "https://www.daon.com/wp-content/uploads/2021/08/identity-proofing-onboarding.svg",
2297
+ "CustomerFriendlyName": "Daon Sandbox",
2298
+ "DeveloperPortalUri": null,
2299
+ "TermsOfServiceUri": null,
2300
+ "NotificationWebhookAddedDate": null,
2301
+ "OpenIDDiscoveryDocument": "https://sky-gum-saas-dobs-idp.identityx-cloud.com/auth/realms/connectidsandbox/.well-known/openid-configuration",
2302
+ "Issuer": "https://sky-gum-saas-dobs-idp.identityx-cloud.com/auth/realms/connectidsandbox",
2303
+ "PayloadSigningCertLocationUri": "https://sky-gum-saas-dobs-idp.identityx-cloud.com/auth/realms/connectidtesting/protocol/openid-connect/certs",
2304
+ "CreatedAt": 1678257665,
2305
+ "ParentAuthorisationServerId": null,
2306
+ "DeprecatedDate": null,
2307
+ "RetirementDate": null,
2308
+ "SupersededByAuthorisationServerId": null
2309
+ }
2310
+ ],
2311
+ "OrgDomainClaims": [
2312
+ {
2313
+ "AuthorisationDomainName": "connectID",
2314
+ "AuthorityName": "connectID",
2315
+ "RegistrationId": "connectID",
2316
+ "Status": "Active"
2317
+ }
2318
+ ],
2319
+ "OrgDomainRoleClaims": [
2320
+ {
2321
+ "Status": "Active",
2322
+ "AuthorisationDomain": "connectID",
2323
+ "Role": "RP-CORE",
2324
+ "Authorisations": [],
2325
+ "RegistrationId": "RP-CORE",
2326
+ "RoleType": "Federation",
2327
+ "Exclusive": false,
2328
+ "Metadata": [
2329
+ {
2330
+ "MetadataId": "109bcd54-2914-4f98-90b9-be2647819e7f",
2331
+ "DomainRoleName": "RP-CORE",
2332
+ "Type": "claim",
2333
+ "Name": "email"
2334
+ },
2335
+ {
2336
+ "MetadataId": "0cd7452d-6b6d-4151-b756-c99a2cfac609",
2337
+ "DomainRoleName": "RP-CORE",
2338
+ "Type": "claim",
2339
+ "Name": "phone_number"
2340
+ },
2341
+ {
2342
+ "MetadataId": "261ec1fa-a6fb-46cc-acb7-7faa0412f22a",
2343
+ "DomainRoleName": "RP-CORE",
2344
+ "Type": "claim",
2345
+ "Name": "middle_name"
2346
+ },
2347
+ {
2348
+ "MetadataId": "8872dc8d-4271-458b-b73c-7ce91b7de552",
2349
+ "DomainRoleName": "RP-CORE",
2350
+ "Type": "claim",
2351
+ "Name": "address"
2352
+ },
2353
+ {
2354
+ "MetadataId": "15fcc989-1bb6-4c87-ac3d-77bda8eb34da",
2355
+ "DomainRoleName": "RP-CORE",
2356
+ "Type": "claim",
2357
+ "Name": "name"
2358
+ },
2359
+ {
2360
+ "MetadataId": "15a13e15-cf43-41dd-9661-7a14996900ca",
2361
+ "DomainRoleName": "RP-CORE",
2362
+ "Type": "claim",
2363
+ "Name": "family_name"
2364
+ },
2365
+ {
2366
+ "MetadataId": "14f5947c-1172-49a8-a04c-8e4f89fd4503",
2367
+ "DomainRoleName": "RP-CORE",
2368
+ "Type": "scope",
2369
+ "Name": "openid"
2370
+ },
2371
+ {
2372
+ "MetadataId": "d15dc17f-8588-431c-a66d-82946d009107",
2373
+ "DomainRoleName": "RP-CORE",
2374
+ "Type": "grant_type",
2375
+ "Name": "authorization_code"
2376
+ },
2377
+ {
2378
+ "MetadataId": "c5414d68-ef52-41e6-a127-762dfae96e4e",
2379
+ "DomainRoleName": "RP-CORE",
2380
+ "Type": "claim",
2381
+ "Name": "given_name"
2382
+ },
2383
+ {
2384
+ "MetadataId": "e94b2480-f774-4858-b680-5acf24afbdb5",
2385
+ "DomainRoleName": "RP-CORE",
2386
+ "Type": "claim",
2387
+ "Name": "birthdate"
2388
+ },
2389
+ {
2390
+ "MetadataId": "6201486b-120f-4f95-b1c8-1b0fa0d71056",
2391
+ "DomainRoleName": "RP-CORE",
2392
+ "Type": "claim",
2393
+ "Name": "txn"
2394
+ },
2395
+ {
2396
+ "MetadataId": "ec9bbff4-4486-4f2f-bf0d-9d652b899542",
2397
+ "DomainRoleName": "RP-CORE",
2398
+ "Type": "response_type",
2399
+ "Name": "code"
2400
+ }
2401
+ ]
2402
+ },
2403
+ {
2404
+ "Status": "Active",
2405
+ "AuthorisationDomain": "connectID",
2406
+ "Role": "IDP",
2407
+ "Authorisations": [],
2408
+ "RegistrationId": "IDP",
2409
+ "RoleType": "Directory",
2410
+ "Exclusive": false,
2411
+ "Metadata": []
2412
+ }
2413
+ ]
2414
+ },
2415
+ {
2416
+ "OrganisationId": "ab4f39dd-2279-49d6-b0b7-8b3cdfe9f14b",
2417
+ "Status": "Active",
2418
+ "OrganisationName": "Service Org",
2419
+ "CreatedOn": "2022-11-23T07:36:46.761Z",
2420
+ "LegalEntityName": "Service Org",
2421
+ "CountryOfRegistration": "AU",
2422
+ "CompanyRegister": "ABN",
2423
+ "Tag": [],
2424
+ "Size": "",
2425
+ "RegistrationNumber": "37 552 837 401",
2426
+ "RegistrationId": "",
2427
+ "RegisteredName": "Service Org",
2428
+ "AddressLine1": " Level 20, McKell Building",
2429
+ "AddressLine2": "2-24 Rawson Place, Haymarket",
2430
+ "City": "Sydney",
2431
+ "Postcode": "2000",
2432
+ "Country": "AU",
2433
+ "ParentOrganisationReference": "",
2434
+ "AuthorisationServers": [
2435
+ {
2436
+ "AuthorisationServerId": "e63015eb-ded1-47e1-8543-a045e0e7c170",
2437
+ "AutoRegistrationSupported": false,
2438
+ "AutoRegistrationNotificationWebhook": null,
2439
+ "SupportsCiba": false,
2440
+ "SupportsDCR": false,
2441
+ "SupportsRedirect": false,
2442
+ "ApiResources": [],
2443
+ "AuthorisationServerCertifications": [],
2444
+ "CustomerFriendlyDescription": "Service NSW Test IDP",
2445
+ "CustomerFriendlyLogoUri": "https://en.wikipedia.org/wiki/Government_of_New_South_Wales#/media/File:New_South_Wales_Government_logo.svg",
2446
+ "CustomerFriendlyName": "Service NSW Test",
2447
+ "DeveloperPortalUri": null,
2448
+ "TermsOfServiceUri": null,
2449
+ "NotificationWebhookAddedDate": null,
2450
+ "OpenIDDiscoveryDocument": "https://7d50-125-253-36-197.ngrok-free.app/.well-known/openid-configuration",
2451
+ "Issuer": "https://7d50-125-253-36-197.ngrok-free.app",
2452
+ "PayloadSigningCertLocationUri": "https://7d50-125-253-36-197.ngrok-free.app/certs",
2453
+ "CreatedAt": 1679457658,
2454
+ "ParentAuthorisationServerId": null,
2455
+ "DeprecatedDate": null,
2456
+ "RetirementDate": null,
2457
+ "SupersededByAuthorisationServerId": null
2458
+ }
2459
+ ],
2460
+ "OrgDomainClaims": [
2461
+ {
2462
+ "AuthorisationDomainName": "connectID",
2463
+ "AuthorityName": "connectID",
2464
+ "RegistrationId": "ConnectID",
2465
+ "Status": "Active"
2466
+ }
2467
+ ],
2468
+ "OrgDomainRoleClaims": [
2469
+ {
2470
+ "Status": "Active",
2471
+ "AuthorisationDomain": "connectID",
2472
+ "Role": "IDP",
2473
+ "Authorisations": [],
2474
+ "RegistrationId": "IDP",
2475
+ "RoleType": "Directory",
2476
+ "Exclusive": false,
2477
+ "Metadata": []
2478
+ },
2479
+ {
2480
+ "Status": "Active",
2481
+ "AuthorisationDomain": "connectID",
2482
+ "Role": "RP-CORE",
2483
+ "Authorisations": [],
2484
+ "RegistrationId": "RP-CORE",
2485
+ "RoleType": "Federation",
2486
+ "Exclusive": false,
2487
+ "Metadata": [
2488
+ {
2489
+ "MetadataId": "109bcd54-2914-4f98-90b9-be2647819e7f",
2490
+ "DomainRoleName": "RP-CORE",
2491
+ "Type": "claim",
2492
+ "Name": "email"
2493
+ },
2494
+ {
2495
+ "MetadataId": "0cd7452d-6b6d-4151-b756-c99a2cfac609",
2496
+ "DomainRoleName": "RP-CORE",
2497
+ "Type": "claim",
2498
+ "Name": "phone_number"
2499
+ },
2500
+ {
2501
+ "MetadataId": "261ec1fa-a6fb-46cc-acb7-7faa0412f22a",
2502
+ "DomainRoleName": "RP-CORE",
2503
+ "Type": "claim",
2504
+ "Name": "middle_name"
2505
+ },
2506
+ {
2507
+ "MetadataId": "8872dc8d-4271-458b-b73c-7ce91b7de552",
2508
+ "DomainRoleName": "RP-CORE",
2509
+ "Type": "claim",
2510
+ "Name": "address"
2511
+ },
2512
+ {
2513
+ "MetadataId": "15fcc989-1bb6-4c87-ac3d-77bda8eb34da",
2514
+ "DomainRoleName": "RP-CORE",
2515
+ "Type": "claim",
2516
+ "Name": "name"
2517
+ },
2518
+ {
2519
+ "MetadataId": "15a13e15-cf43-41dd-9661-7a14996900ca",
2520
+ "DomainRoleName": "RP-CORE",
2521
+ "Type": "claim",
2522
+ "Name": "family_name"
2523
+ },
2524
+ {
2525
+ "MetadataId": "14f5947c-1172-49a8-a04c-8e4f89fd4503",
2526
+ "DomainRoleName": "RP-CORE",
2527
+ "Type": "scope",
2528
+ "Name": "openid"
2529
+ },
2530
+ {
2531
+ "MetadataId": "d15dc17f-8588-431c-a66d-82946d009107",
2532
+ "DomainRoleName": "RP-CORE",
2533
+ "Type": "grant_type",
2534
+ "Name": "authorization_code"
2535
+ },
2536
+ {
2537
+ "MetadataId": "c5414d68-ef52-41e6-a127-762dfae96e4e",
2538
+ "DomainRoleName": "RP-CORE",
2539
+ "Type": "claim",
2540
+ "Name": "given_name"
2541
+ },
2542
+ {
2543
+ "MetadataId": "e94b2480-f774-4858-b680-5acf24afbdb5",
2544
+ "DomainRoleName": "RP-CORE",
2545
+ "Type": "claim",
2546
+ "Name": "birthdate"
2547
+ },
2548
+ {
2549
+ "MetadataId": "6201486b-120f-4f95-b1c8-1b0fa0d71056",
2550
+ "DomainRoleName": "RP-CORE",
2551
+ "Type": "claim",
2552
+ "Name": "txn"
2553
+ },
2554
+ {
2555
+ "MetadataId": "ec9bbff4-4486-4f2f-bf0d-9d652b899542",
2556
+ "DomainRoleName": "RP-CORE",
2557
+ "Type": "response_type",
2558
+ "Name": "code"
2559
+ }
2560
+ ]
2561
+ }
2562
+ ]
2563
+ },
2564
+ {
2565
+ "OrganisationId": "ee429a48-a80a-411f-ae8a-663b174adc1e",
2566
+ "Status": "Active",
2567
+ "OrganisationName": "Test - CyberCX B",
2568
+ "CreatedOn": "2022-11-11T00:29:53.666Z",
2569
+ "LegalEntityName": "Test - CyberCX B",
2570
+ "CountryOfRegistration": "AU",
2571
+ "CompanyRegister": "ABN",
2572
+ "Tag": [],
2573
+ "Size": "",
2574
+ "RegistrationNumber": "987654321",
2575
+ "RegistrationId": "",
2576
+ "RegisteredName": "Test - CyberCX B",
2577
+ "AddressLine1": "Level 1",
2578
+ "AddressLine2": "255 George St",
2579
+ "City": "Sydney",
2580
+ "Postcode": "2000",
2581
+ "Country": "AU",
2582
+ "ParentOrganisationReference": "",
2583
+ "AuthorisationServers": [
2584
+ {
2585
+ "AuthorisationServerId": "0c1584dd-4575-4ca3-aea8-5544760cbc7e",
2586
+ "AutoRegistrationSupported": false,
2587
+ "AutoRegistrationNotificationWebhook": null,
2588
+ "SupportsCiba": false,
2589
+ "SupportsDCR": false,
2590
+ "SupportsRedirect": false,
2591
+ "ApiResources": [],
2592
+ "AuthorisationServerCertifications": [],
2593
+ "CustomerFriendlyDescription": "CyberCX B Test Auth Server",
2594
+ "CustomerFriendlyLogoUri": "https://auth.bank1.directory.sandbox.connectid.com.au/logo.svg",
2595
+ "CustomerFriendlyName": "CyberCX B Test Auth Server",
2596
+ "DeveloperPortalUri": "https://auth.bank1.directory.sandbox.connectid.com.au",
2597
+ "TermsOfServiceUri": "https://auth.bank1.directory.sandbox.connectid.com.au",
2598
+ "NotificationWebhookAddedDate": null,
2599
+ "OpenIDDiscoveryDocument": "https://ccx-testing-cs.sgp1.digitaloceanspaces.com/.well-known/openid-configuration.json",
2600
+ "Issuer": "https://ccxbank.sandbox.connectid.com.au",
2601
+ "PayloadSigningCertLocationUri": "https://auth.bank1.directory.sandbox.connectid.com.au",
2602
+ "CreatedAt": 1668552714,
2603
+ "ParentAuthorisationServerId": null,
2604
+ "DeprecatedDate": null,
2605
+ "RetirementDate": null,
2606
+ "SupersededByAuthorisationServerId": null
2607
+ }
2608
+ ],
2609
+ "OrgDomainClaims": [
2610
+ {
2611
+ "AuthorisationDomainName": "connectID",
2612
+ "AuthorityName": "connectID",
2613
+ "RegistrationId": "connectID",
2614
+ "Status": "Active"
2615
+ }
2616
+ ],
2617
+ "OrgDomainRoleClaims": [
2618
+ {
2619
+ "Status": "Active",
2620
+ "AuthorisationDomain": "connectID",
2621
+ "Role": "IDP",
2622
+ "Authorisations": [],
2623
+ "RegistrationId": "IDP",
2624
+ "RoleType": "Directory",
2625
+ "Exclusive": false,
2626
+ "Metadata": []
2627
+ },
2628
+ {
2629
+ "Status": "Active",
2630
+ "AuthorisationDomain": "connectID",
2631
+ "Role": "RP-CORE",
2632
+ "Authorisations": [],
2633
+ "RegistrationId": "RP-CORE",
2634
+ "RoleType": "Federation",
2635
+ "Exclusive": false,
2636
+ "Metadata": [
2637
+ {
2638
+ "MetadataId": "109bcd54-2914-4f98-90b9-be2647819e7f",
2639
+ "DomainRoleName": "RP-CORE",
2640
+ "Type": "claim",
2641
+ "Name": "email"
2642
+ },
2643
+ {
2644
+ "MetadataId": "0cd7452d-6b6d-4151-b756-c99a2cfac609",
2645
+ "DomainRoleName": "RP-CORE",
2646
+ "Type": "claim",
2647
+ "Name": "phone_number"
2648
+ },
2649
+ {
2650
+ "MetadataId": "261ec1fa-a6fb-46cc-acb7-7faa0412f22a",
2651
+ "DomainRoleName": "RP-CORE",
2652
+ "Type": "claim",
2653
+ "Name": "middle_name"
2654
+ },
2655
+ {
2656
+ "MetadataId": "8872dc8d-4271-458b-b73c-7ce91b7de552",
2657
+ "DomainRoleName": "RP-CORE",
2658
+ "Type": "claim",
2659
+ "Name": "address"
2660
+ },
2661
+ {
2662
+ "MetadataId": "15fcc989-1bb6-4c87-ac3d-77bda8eb34da",
2663
+ "DomainRoleName": "RP-CORE",
2664
+ "Type": "claim",
2665
+ "Name": "name"
2666
+ },
2667
+ {
2668
+ "MetadataId": "15a13e15-cf43-41dd-9661-7a14996900ca",
2669
+ "DomainRoleName": "RP-CORE",
2670
+ "Type": "claim",
2671
+ "Name": "family_name"
2672
+ },
2673
+ {
2674
+ "MetadataId": "14f5947c-1172-49a8-a04c-8e4f89fd4503",
2675
+ "DomainRoleName": "RP-CORE",
2676
+ "Type": "scope",
2677
+ "Name": "openid"
2678
+ },
2679
+ {
2680
+ "MetadataId": "d15dc17f-8588-431c-a66d-82946d009107",
2681
+ "DomainRoleName": "RP-CORE",
2682
+ "Type": "grant_type",
2683
+ "Name": "authorization_code"
2684
+ },
2685
+ {
2686
+ "MetadataId": "c5414d68-ef52-41e6-a127-762dfae96e4e",
2687
+ "DomainRoleName": "RP-CORE",
2688
+ "Type": "claim",
2689
+ "Name": "given_name"
2690
+ },
2691
+ {
2692
+ "MetadataId": "e94b2480-f774-4858-b680-5acf24afbdb5",
2693
+ "DomainRoleName": "RP-CORE",
2694
+ "Type": "claim",
2695
+ "Name": "birthdate"
2696
+ },
2697
+ {
2698
+ "MetadataId": "6201486b-120f-4f95-b1c8-1b0fa0d71056",
2699
+ "DomainRoleName": "RP-CORE",
2700
+ "Type": "claim",
2701
+ "Name": "txn"
2702
+ },
2703
+ {
2704
+ "MetadataId": "ec9bbff4-4486-4f2f-bf0d-9d652b899542",
2705
+ "DomainRoleName": "RP-CORE",
2706
+ "Type": "response_type",
2707
+ "Name": "code"
2708
+ }
2709
+ ]
2710
+ }
2711
+ ]
2712
+ },
2713
+ {
2714
+ "OrganisationId": "08dd6f00-4bd7-44b1-bd2e-df8912ac49eb",
2715
+ "Status": "Active",
2716
+ "OrganisationName": "National Australia Bank",
2717
+ "CreatedOn": "2022-08-26T03:05:29.210Z",
2718
+ "LegalEntityName": "National Australia Bank",
2719
+ "CountryOfRegistration": "AU",
2720
+ "CompanyRegister": "ABN",
2721
+ "Tag": [],
2722
+ "Size": "",
2723
+ "RegistrationNumber": "12 004 044 937",
2724
+ "RegistrationId": null,
2725
+ "RegisteredName": "National Australia Bank",
2726
+ "AddressLine1": "Level 4",
2727
+ "AddressLine2": "800 Bourke St",
2728
+ "City": "Docklands",
2729
+ "Postcode": "3008",
2730
+ "Country": "AU",
2731
+ "ParentOrganisationReference": "",
2732
+ "AuthorisationServers": [
2733
+ {
2734
+ "AuthorisationServerId": "649b638a-9dc1-4e70-8754-14024435d6bb",
2735
+ "AutoRegistrationSupported": false,
2736
+ "AutoRegistrationNotificationWebhook": null,
2737
+ "SupportsCiba": false,
2738
+ "SupportsDCR": false,
2739
+ "SupportsRedirect": false,
2740
+ "ApiResources": [],
2741
+ "AuthorisationServerCertifications": [
2742
+ {
2743
+ "CertificationStartDate": "15/05/2023",
2744
+ "CertificationExpirationDate": "14/05/2024",
2745
+ "CertificationId": "f2397a36-c501-495d-a725-d08fa9b5d45b",
2746
+ "AuthorisationServerId": "649b638a-9dc1-4e70-8754-14024435d6bb",
2747
+ "Status": "Certified",
2748
+ "ProfileVariant": "web",
2749
+ "ProfileType": "Channel",
2750
+ "ProfileVersion": 1,
2751
+ "CertificationURI": "https://cdn.dev.connectid.com.au/certification/certification-result.zip"
2752
+ }
2753
+ ],
2754
+ "CustomerFriendlyDescription": "National Australia Bank Authorisation server",
2755
+ "CustomerFriendlyLogoUri": "https://www.nab.com.au/etc.clientlibs/nab/clientlibs/clientlib-generated-styleguide/resources/images/svg/nab-logo.svg",
2756
+ "CustomerFriendlyName": "National Australia Bank",
2757
+ "DeveloperPortalUri": null,
2758
+ "TermsOfServiceUri": null,
2759
+ "NotificationWebhookAddedDate": null,
2760
+ "OpenIDDiscoveryDocument": "https://digitalid.api-test.nab.com.au/.well-known/openid-configuration",
2761
+ "Issuer": "https://digitalid.api-test.nab.com.au",
2762
+ "PayloadSigningCertLocationUri": "https://digitalid.api-test.nab.com.au/cert",
2763
+ "CreatedAt": 1666754107,
2764
+ "ParentAuthorisationServerId": null,
2765
+ "DeprecatedDate": null,
2766
+ "RetirementDate": null,
2767
+ "SupersededByAuthorisationServerId": null
2768
+ }
2769
+ ],
2770
+ "OrgDomainClaims": [
2771
+ {
2772
+ "AuthorisationDomainName": "connectID",
2773
+ "AuthorityName": "connectID",
2774
+ "RegistrationId": "ConnectID",
2775
+ "Status": "Active"
2776
+ }
2777
+ ],
2778
+ "OrgDomainRoleClaims": [
2779
+ {
2780
+ "Status": "Active",
2781
+ "AuthorisationDomain": "connectID",
2782
+ "Role": "IDP",
2783
+ "Authorisations": [],
2784
+ "RegistrationId": "ConnectID",
2785
+ "RoleType": "Directory",
2786
+ "Exclusive": false,
2787
+ "Metadata": []
2788
+ },
2789
+ {
2790
+ "Status": "Active",
2791
+ "AuthorisationDomain": "connectID",
2792
+ "Role": "RP-CORE",
2793
+ "Authorisations": [],
2794
+ "RegistrationId": "RP-CORE",
2795
+ "RoleType": "Federation",
2796
+ "Exclusive": false,
2797
+ "Metadata": [
2798
+ {
2799
+ "MetadataId": "109bcd54-2914-4f98-90b9-be2647819e7f",
2800
+ "DomainRoleName": "RP-CORE",
2801
+ "Type": "claim",
2802
+ "Name": "email"
2803
+ },
2804
+ {
2805
+ "MetadataId": "0cd7452d-6b6d-4151-b756-c99a2cfac609",
2806
+ "DomainRoleName": "RP-CORE",
2807
+ "Type": "claim",
2808
+ "Name": "phone_number"
2809
+ },
2810
+ {
2811
+ "MetadataId": "261ec1fa-a6fb-46cc-acb7-7faa0412f22a",
2812
+ "DomainRoleName": "RP-CORE",
2813
+ "Type": "claim",
2814
+ "Name": "middle_name"
2815
+ },
2816
+ {
2817
+ "MetadataId": "8872dc8d-4271-458b-b73c-7ce91b7de552",
2818
+ "DomainRoleName": "RP-CORE",
2819
+ "Type": "claim",
2820
+ "Name": "address"
2821
+ },
2822
+ {
2823
+ "MetadataId": "15fcc989-1bb6-4c87-ac3d-77bda8eb34da",
2824
+ "DomainRoleName": "RP-CORE",
2825
+ "Type": "claim",
2826
+ "Name": "name"
2827
+ },
2828
+ {
2829
+ "MetadataId": "15a13e15-cf43-41dd-9661-7a14996900ca",
2830
+ "DomainRoleName": "RP-CORE",
2831
+ "Type": "claim",
2832
+ "Name": "family_name"
2833
+ },
2834
+ {
2835
+ "MetadataId": "14f5947c-1172-49a8-a04c-8e4f89fd4503",
2836
+ "DomainRoleName": "RP-CORE",
2837
+ "Type": "scope",
2838
+ "Name": "openid"
2839
+ },
2840
+ {
2841
+ "MetadataId": "d15dc17f-8588-431c-a66d-82946d009107",
2842
+ "DomainRoleName": "RP-CORE",
2843
+ "Type": "grant_type",
2844
+ "Name": "authorization_code"
2845
+ },
2846
+ {
2847
+ "MetadataId": "c5414d68-ef52-41e6-a127-762dfae96e4e",
2848
+ "DomainRoleName": "RP-CORE",
2849
+ "Type": "claim",
2850
+ "Name": "given_name"
2851
+ },
2852
+ {
2853
+ "MetadataId": "e94b2480-f774-4858-b680-5acf24afbdb5",
2854
+ "DomainRoleName": "RP-CORE",
2855
+ "Type": "claim",
2856
+ "Name": "birthdate"
2857
+ },
2858
+ {
2859
+ "MetadataId": "6201486b-120f-4f95-b1c8-1b0fa0d71056",
2860
+ "DomainRoleName": "RP-CORE",
2861
+ "Type": "claim",
2862
+ "Name": "txn"
2863
+ },
2864
+ {
2865
+ "MetadataId": "ec9bbff4-4486-4f2f-bf0d-9d652b899542",
2866
+ "DomainRoleName": "RP-CORE",
2867
+ "Type": "response_type",
2868
+ "Name": "code"
2869
+ }
2870
+ ]
2871
+ }
2872
+ ]
2873
+ },
2874
+ {
2875
+ "OrganisationId": "sP0zQ0fQ2zC4qF0m",
2876
+ "Status": "Active",
2877
+ "OrganisationName": "Test IDP One + RP",
2878
+ "CreatedOn": "2022-08-03T06:27:01.434Z",
2879
+ "LegalEntityName": "Test IDP One + RP Pty Ltd",
2880
+ "CountryOfRegistration": "AU",
2881
+ "CompanyRegister": "Australian Business Number (ABN)",
2882
+ "Tag": [],
2883
+ "Size": "S4",
2884
+ "RegistrationNumber": "12 004 045 391",
2885
+ "RegistrationId": null,
2886
+ "RegisteredName": "Test IDP One +RP Pty Ltd",
2887
+ "AddressLine1": "270 Kent street",
2888
+ "AddressLine2": null,
2889
+ "City": "Sydney",
2890
+ "Postcode": "2001",
2891
+ "Country": "AU",
2892
+ "ParentOrganisationReference": "",
2893
+ "AuthorisationServers": [
2894
+ {
2895
+ "AuthorisationServerId": "746a874b-f93b-483e-bfbe-754aa48a9810",
2896
+ "AutoRegistrationSupported": true,
2897
+ "AutoRegistrationNotificationWebhook": "https://auth.bank1.directory.sandbox.connectid.com.au/ssonboard/webhook",
2898
+ "SupportsCiba": false,
2899
+ "SupportsDCR": false,
2900
+ "SupportsRedirect": false,
2901
+ "ApiResources": [],
2902
+ "AuthorisationServerCertifications": [],
2903
+ "CustomerFriendlyDescription": "Bank A BP testing",
2904
+ "CustomerFriendlyLogoUri": "https://static.sandbox.connectid.com.au/BankA.svg",
2905
+ "CustomerFriendlyName": "Bank A (BP test)",
2906
+ "DeveloperPortalUri": null,
2907
+ "TermsOfServiceUri": null,
2908
+ "NotificationWebhookAddedDate": null,
2909
+ "OpenIDDiscoveryDocument": "https://auth.bank1.directory.sandbox.connectid.com.au/.well-known/openid-configuration",
2910
+ "Issuer": "https://auth.bank1.directory.sandbox.connectid.com.au",
2911
+ "PayloadSigningCertLocationUri": "https://auth.bank1.directory.sandbox.connectid.com.au/na",
2912
+ "CreatedAt": 1666091135,
2913
+ "ParentAuthorisationServerId": null,
2914
+ "DeprecatedDate": "2034-12-31",
2915
+ "RetirementDate": "2035-12-31",
2916
+ "SupersededByAuthorisationServerId": null
2917
+ }
2918
+ ],
2919
+ "OrgDomainClaims": [
2920
+ {
2921
+ "AuthorisationDomainName": "connectID",
2922
+ "AuthorityName": "connectID",
2923
+ "RegistrationId": "connectID",
2924
+ "Status": "Active"
2925
+ }
2926
+ ],
2927
+ "OrgDomainRoleClaims": [
2928
+ {
2929
+ "Status": "Active",
2930
+ "AuthorisationDomain": "connectID",
2931
+ "Role": "RP-CORE",
2932
+ "Authorisations": [
2933
+ {
2934
+ "Status": "Inactive",
2935
+ "MemberState": "AU"
2936
+ }
2937
+ ],
2938
+ "RegistrationId": "886a550b-78d0-47f6-b908-9b78ee86c94d",
2939
+ "RoleType": "Federation",
2940
+ "Exclusive": false,
2941
+ "Metadata": [
2942
+ {
2943
+ "MetadataId": "109bcd54-2914-4f98-90b9-be2647819e7f",
2944
+ "DomainRoleName": "RP-CORE",
2945
+ "Type": "claim",
2946
+ "Name": "email"
2947
+ },
2948
+ {
2949
+ "MetadataId": "0cd7452d-6b6d-4151-b756-c99a2cfac609",
2950
+ "DomainRoleName": "RP-CORE",
2951
+ "Type": "claim",
2952
+ "Name": "phone_number"
2953
+ },
2954
+ {
2955
+ "MetadataId": "261ec1fa-a6fb-46cc-acb7-7faa0412f22a",
2956
+ "DomainRoleName": "RP-CORE",
2957
+ "Type": "claim",
2958
+ "Name": "middle_name"
2959
+ },
2960
+ {
2961
+ "MetadataId": "8872dc8d-4271-458b-b73c-7ce91b7de552",
2962
+ "DomainRoleName": "RP-CORE",
2963
+ "Type": "claim",
2964
+ "Name": "address"
2965
+ },
2966
+ {
2967
+ "MetadataId": "15fcc989-1bb6-4c87-ac3d-77bda8eb34da",
2968
+ "DomainRoleName": "RP-CORE",
2969
+ "Type": "claim",
2970
+ "Name": "name"
2971
+ },
2972
+ {
2973
+ "MetadataId": "15a13e15-cf43-41dd-9661-7a14996900ca",
2974
+ "DomainRoleName": "RP-CORE",
2975
+ "Type": "claim",
2976
+ "Name": "family_name"
2977
+ },
2978
+ {
2979
+ "MetadataId": "14f5947c-1172-49a8-a04c-8e4f89fd4503",
2980
+ "DomainRoleName": "RP-CORE",
2981
+ "Type": "scope",
2982
+ "Name": "openid"
2983
+ },
2984
+ {
2985
+ "MetadataId": "d15dc17f-8588-431c-a66d-82946d009107",
2986
+ "DomainRoleName": "RP-CORE",
2987
+ "Type": "grant_type",
2988
+ "Name": "authorization_code"
2989
+ },
2990
+ {
2991
+ "MetadataId": "c5414d68-ef52-41e6-a127-762dfae96e4e",
2992
+ "DomainRoleName": "RP-CORE",
2993
+ "Type": "claim",
2994
+ "Name": "given_name"
2995
+ },
2996
+ {
2997
+ "MetadataId": "e94b2480-f774-4858-b680-5acf24afbdb5",
2998
+ "DomainRoleName": "RP-CORE",
2999
+ "Type": "claim",
3000
+ "Name": "birthdate"
3001
+ },
3002
+ {
3003
+ "MetadataId": "6201486b-120f-4f95-b1c8-1b0fa0d71056",
3004
+ "DomainRoleName": "RP-CORE",
3005
+ "Type": "claim",
3006
+ "Name": "txn"
3007
+ },
3008
+ {
3009
+ "MetadataId": "ec9bbff4-4486-4f2f-bf0d-9d652b899542",
3010
+ "DomainRoleName": "RP-CORE",
3011
+ "Type": "response_type",
3012
+ "Name": "code"
3013
+ }
3014
+ ]
3015
+ },
3016
+ {
3017
+ "Status": "Active",
3018
+ "AuthorisationDomain": "connectID",
3019
+ "Role": "IDP",
3020
+ "Authorisations": [
3021
+ {
3022
+ "Status": "Inactive",
3023
+ "MemberState": "FR"
3024
+ },
3025
+ {
3026
+ "Status": "Active",
3027
+ "MemberState": "AU"
3028
+ }
3029
+ ],
3030
+ "RegistrationId": "333354546d7cveer8-485858020202-rr",
3031
+ "RoleType": "Directory",
3032
+ "Exclusive": false,
3033
+ "Metadata": []
3034
+ }
3035
+ ]
3036
+ },
3037
+ {
3038
+ "OrganisationId": "661d2eab-c914-4f0e-9518-03fb7e4d7ba7",
3039
+ "Status": "Active",
3040
+ "OrganisationName": "Meeco",
3041
+ "CreatedOn": "2022-08-26T03:22:33.768Z",
3042
+ "LegalEntityName": "Meeco",
3043
+ "CountryOfRegistration": "AU",
3044
+ "CompanyRegister": "ABN",
3045
+ "Tag": [],
3046
+ "Size": "",
3047
+ "RegistrationNumber": "22 160 047 316",
3048
+ "RegistrationId": "",
3049
+ "RegisteredName": "Meeco",
3050
+ "AddressLine1": "710 Collins Street",
3051
+ "AddressLine2": "",
3052
+ "City": "Docklands",
3053
+ "Postcode": "3008",
3054
+ "Country": "AU",
3055
+ "ParentOrganisationReference": "",
3056
+ "AuthorisationServers": [
3057
+ {
3058
+ "AuthorisationServerId": "ececf52d-ab95-435a-90a4-060eea8b7405",
3059
+ "AutoRegistrationSupported": false,
3060
+ "AutoRegistrationNotificationWebhook": null,
3061
+ "SupportsCiba": false,
3062
+ "SupportsDCR": false,
3063
+ "SupportsRedirect": false,
3064
+ "ApiResources": [],
3065
+ "AuthorisationServerCertifications": [],
3066
+ "CustomerFriendlyDescription": "Authenticate by using Meeco Wallet authorisation server",
3067
+ "CustomerFriendlyLogoUri": "https://meecodevstorage0.blob.core.windows.net/fake-assets/logs/Meeco_Wallet_Icon.svg",
3068
+ "CustomerFriendlyName": "Meeco Wallet Sandbox",
3069
+ "DeveloperPortalUri": null,
3070
+ "TermsOfServiceUri": null,
3071
+ "NotificationWebhookAddedDate": null,
3072
+ "OpenIDDiscoveryDocument": "https://connectid-bridge-sandbox.securevalueexchange.com/auth/.well-known/openid-configuration",
3073
+ "Issuer": "https://connectid-bridge-sandbox.securevalueexchange.com",
3074
+ "PayloadSigningCertLocationUri": "https://connectid-bridge-sandbox.securevalueexchange.com/auth/jwks",
3075
+ "CreatedAt": 1681300275,
3076
+ "ParentAuthorisationServerId": null,
3077
+ "DeprecatedDate": null,
3078
+ "RetirementDate": null,
3079
+ "SupersededByAuthorisationServerId": null
3080
+ }
3081
+ ],
3082
+ "OrgDomainClaims": [
3083
+ {
3084
+ "AuthorisationDomainName": "connectID",
3085
+ "AuthorityName": "connectID",
3086
+ "RegistrationId": "ConnectID",
3087
+ "Status": "Active"
3088
+ }
3089
+ ],
3090
+ "OrgDomainRoleClaims": [
3091
+ {
3092
+ "Status": "Active",
3093
+ "AuthorisationDomain": "connectID",
3094
+ "Role": "RP-CORE",
3095
+ "Authorisations": [],
3096
+ "RegistrationId": "RP-Core",
3097
+ "RoleType": "Federation",
3098
+ "Exclusive": false,
3099
+ "Metadata": [
3100
+ {
3101
+ "MetadataId": "109bcd54-2914-4f98-90b9-be2647819e7f",
3102
+ "DomainRoleName": "RP-CORE",
3103
+ "Type": "claim",
3104
+ "Name": "email"
3105
+ },
3106
+ {
3107
+ "MetadataId": "0cd7452d-6b6d-4151-b756-c99a2cfac609",
3108
+ "DomainRoleName": "RP-CORE",
3109
+ "Type": "claim",
3110
+ "Name": "phone_number"
3111
+ },
3112
+ {
3113
+ "MetadataId": "261ec1fa-a6fb-46cc-acb7-7faa0412f22a",
3114
+ "DomainRoleName": "RP-CORE",
3115
+ "Type": "claim",
3116
+ "Name": "middle_name"
3117
+ },
3118
+ {
3119
+ "MetadataId": "8872dc8d-4271-458b-b73c-7ce91b7de552",
3120
+ "DomainRoleName": "RP-CORE",
3121
+ "Type": "claim",
3122
+ "Name": "address"
3123
+ },
3124
+ {
3125
+ "MetadataId": "15fcc989-1bb6-4c87-ac3d-77bda8eb34da",
3126
+ "DomainRoleName": "RP-CORE",
3127
+ "Type": "claim",
3128
+ "Name": "name"
3129
+ },
3130
+ {
3131
+ "MetadataId": "15a13e15-cf43-41dd-9661-7a14996900ca",
3132
+ "DomainRoleName": "RP-CORE",
3133
+ "Type": "claim",
3134
+ "Name": "family_name"
3135
+ },
3136
+ {
3137
+ "MetadataId": "14f5947c-1172-49a8-a04c-8e4f89fd4503",
3138
+ "DomainRoleName": "RP-CORE",
3139
+ "Type": "scope",
3140
+ "Name": "openid"
3141
+ },
3142
+ {
3143
+ "MetadataId": "d15dc17f-8588-431c-a66d-82946d009107",
3144
+ "DomainRoleName": "RP-CORE",
3145
+ "Type": "grant_type",
3146
+ "Name": "authorization_code"
3147
+ },
3148
+ {
3149
+ "MetadataId": "c5414d68-ef52-41e6-a127-762dfae96e4e",
3150
+ "DomainRoleName": "RP-CORE",
3151
+ "Type": "claim",
3152
+ "Name": "given_name"
3153
+ },
3154
+ {
3155
+ "MetadataId": "e94b2480-f774-4858-b680-5acf24afbdb5",
3156
+ "DomainRoleName": "RP-CORE",
3157
+ "Type": "claim",
3158
+ "Name": "birthdate"
3159
+ },
3160
+ {
3161
+ "MetadataId": "6201486b-120f-4f95-b1c8-1b0fa0d71056",
3162
+ "DomainRoleName": "RP-CORE",
3163
+ "Type": "claim",
3164
+ "Name": "txn"
3165
+ },
3166
+ {
3167
+ "MetadataId": "ec9bbff4-4486-4f2f-bf0d-9d652b899542",
3168
+ "DomainRoleName": "RP-CORE",
3169
+ "Type": "response_type",
3170
+ "Name": "code"
3171
+ }
3172
+ ]
3173
+ }
3174
+ ]
3175
+ },
3176
+ {
3177
+ "OrganisationId": "01868e5d0a",
3178
+ "Status": "Active",
3179
+ "OrganisationName": "Test RP One",
3180
+ "CreatedOn": "2022-08-03T02:35:48.868Z",
3181
+ "LegalEntityName": "Test RP One Pty Ltd",
3182
+ "CountryOfRegistration": "AU",
3183
+ "CompanyRegister": "ABN",
3184
+ "Tag": [],
3185
+ "Size": "S1",
3186
+ "RegistrationNumber": "12 004 044 937",
3187
+ "RegistrationId": null,
3188
+ "RegisteredName": "Test RP One Pty Ltd",
3189
+ "AddressLine1": "156 Elisabeth street",
3190
+ "AddressLine2": null,
3191
+ "City": "Sydney",
3192
+ "Postcode": "2001",
3193
+ "Country": "AU",
3194
+ "ParentOrganisationReference": "",
3195
+ "AuthorisationServers": [
3196
+ {
3197
+ "AuthorisationServerId": "f9bd669c-08d8-4bbf-97f7-10f2cb4d6fa7",
3198
+ "AutoRegistrationSupported": true,
3199
+ "AutoRegistrationNotificationWebhook": "https://auth.bank2.directory.sandbox.connectid.com.au/ssonboard/webhook",
3200
+ "SupportsCiba": false,
3201
+ "SupportsDCR": false,
3202
+ "SupportsRedirect": false,
3203
+ "ApiResources": [],
3204
+ "AuthorisationServerCertifications": [],
3205
+ "CustomerFriendlyDescription": "bank z for sandbox",
3206
+ "CustomerFriendlyLogoUri": "https://static.sandbox.connectid.com.au/BankC.svg",
3207
+ "CustomerFriendlyName": "Mock Bank Z",
3208
+ "DeveloperPortalUri": "https://static.sandbox.connectid.com.au/",
3209
+ "TermsOfServiceUri": null,
3210
+ "NotificationWebhookAddedDate": null,
3211
+ "OpenIDDiscoveryDocument": "https://auth.bank2.directory.sandbox.connectid.com.au/.well-known/openid-configuration",
3212
+ "Issuer": "https://auth.bank2.directory.sandbox.connectid.com.au",
3213
+ "PayloadSigningCertLocationUri": "https://auth.bank2.directory.sandbox.connectid.com.au/na",
3214
+ "CreatedAt": 1667313244,
3215
+ "ParentAuthorisationServerId": null,
3216
+ "DeprecatedDate": null,
3217
+ "RetirementDate": null,
3218
+ "SupersededByAuthorisationServerId": null
3219
+ }
3220
+ ],
3221
+ "OrgDomainClaims": [
3222
+ {
3223
+ "AuthorisationDomainName": "connectID",
3224
+ "AuthorityName": "connectID",
3225
+ "RegistrationId": "23b415ee-e9b4-4484-9ab3-33f2feadf4a8",
3226
+ "Status": "Active"
3227
+ }
3228
+ ],
3229
+ "OrgDomainRoleClaims": [
3230
+ {
3231
+ "Status": "Active",
3232
+ "AuthorisationDomain": "connectID",
3233
+ "Role": "RS",
3234
+ "Authorisations": [],
3235
+ "RegistrationId": "rs",
3236
+ "RoleType": "Directory",
3237
+ "Exclusive": false,
3238
+ "Metadata": []
3239
+ },
3240
+ {
3241
+ "Status": "Active",
3242
+ "AuthorisationDomain": "connectID",
3243
+ "Role": "IDP",
3244
+ "Authorisations": [
3245
+ {
3246
+ "Status": "Active",
3247
+ "MemberState": "AU"
3248
+ },
3249
+ {
3250
+ "Status": "Active",
3251
+ "MemberState": "FR"
3252
+ }
3253
+ ],
3254
+ "RegistrationId": "eaae71ed",
3255
+ "RoleType": "Directory",
3256
+ "Exclusive": false,
3257
+ "Metadata": []
3258
+ },
3259
+ {
3260
+ "Status": "Active",
3261
+ "AuthorisationDomain": "connectID",
3262
+ "Role": "RP-CORE",
3263
+ "Authorisations": [
3264
+ {
3265
+ "Status": "Inactive",
3266
+ "MemberState": "AU"
3267
+ },
3268
+ {
3269
+ "Status": "Inactive",
3270
+ "MemberState": "AM"
3271
+ }
3272
+ ],
3273
+ "RegistrationId": "ddce32a9",
3274
+ "RoleType": "Federation",
3275
+ "Exclusive": false,
3276
+ "Metadata": [
3277
+ {
3278
+ "MetadataId": "109bcd54-2914-4f98-90b9-be2647819e7f",
3279
+ "DomainRoleName": "RP-CORE",
3280
+ "Type": "claim",
3281
+ "Name": "email"
3282
+ },
3283
+ {
3284
+ "MetadataId": "0cd7452d-6b6d-4151-b756-c99a2cfac609",
3285
+ "DomainRoleName": "RP-CORE",
3286
+ "Type": "claim",
3287
+ "Name": "phone_number"
3288
+ },
3289
+ {
3290
+ "MetadataId": "261ec1fa-a6fb-46cc-acb7-7faa0412f22a",
3291
+ "DomainRoleName": "RP-CORE",
3292
+ "Type": "claim",
3293
+ "Name": "middle_name"
3294
+ },
3295
+ {
3296
+ "MetadataId": "8872dc8d-4271-458b-b73c-7ce91b7de552",
3297
+ "DomainRoleName": "RP-CORE",
3298
+ "Type": "claim",
3299
+ "Name": "address"
3300
+ },
3301
+ {
3302
+ "MetadataId": "15fcc989-1bb6-4c87-ac3d-77bda8eb34da",
3303
+ "DomainRoleName": "RP-CORE",
3304
+ "Type": "claim",
3305
+ "Name": "name"
3306
+ },
3307
+ {
3308
+ "MetadataId": "15a13e15-cf43-41dd-9661-7a14996900ca",
3309
+ "DomainRoleName": "RP-CORE",
3310
+ "Type": "claim",
3311
+ "Name": "family_name"
3312
+ },
3313
+ {
3314
+ "MetadataId": "14f5947c-1172-49a8-a04c-8e4f89fd4503",
3315
+ "DomainRoleName": "RP-CORE",
3316
+ "Type": "scope",
3317
+ "Name": "openid"
3318
+ },
3319
+ {
3320
+ "MetadataId": "d15dc17f-8588-431c-a66d-82946d009107",
3321
+ "DomainRoleName": "RP-CORE",
3322
+ "Type": "grant_type",
3323
+ "Name": "authorization_code"
3324
+ },
3325
+ {
3326
+ "MetadataId": "c5414d68-ef52-41e6-a127-762dfae96e4e",
3327
+ "DomainRoleName": "RP-CORE",
3328
+ "Type": "claim",
3329
+ "Name": "given_name"
3330
+ },
3331
+ {
3332
+ "MetadataId": "e94b2480-f774-4858-b680-5acf24afbdb5",
3333
+ "DomainRoleName": "RP-CORE",
3334
+ "Type": "claim",
3335
+ "Name": "birthdate"
3336
+ },
3337
+ {
3338
+ "MetadataId": "6201486b-120f-4f95-b1c8-1b0fa0d71056",
3339
+ "DomainRoleName": "RP-CORE",
3340
+ "Type": "claim",
3341
+ "Name": "txn"
3342
+ },
3343
+ {
3344
+ "MetadataId": "ec9bbff4-4486-4f2f-bf0d-9d652b899542",
3345
+ "DomainRoleName": "RP-CORE",
3346
+ "Type": "response_type",
3347
+ "Name": "code"
3348
+ }
3349
+ ]
3350
+ }
3351
+ ]
3352
+ },
3353
+ {
3354
+ "OrganisationId": "8306d062-3f7c-48a1-8b87-4c8411592cf5",
3355
+ "Status": "Active",
3356
+ "OrganisationName": "Ping",
3357
+ "CreatedOn": "2022-12-21T23:58:42.431Z",
3358
+ "LegalEntityName": "Ping Identity Corporation",
3359
+ "CountryOfRegistration": "AU",
3360
+ "CompanyRegister": "ABN",
3361
+ "Tag": [],
3362
+ "Size": "",
3363
+ "RegistrationNumber": "79 164 052 644",
3364
+ "RegistrationId": "",
3365
+ "RegisteredName": "Ping Identity Corporation",
3366
+ "AddressLine1": "1001 17th Street, Suite 100, ",
3367
+ "AddressLine2": "",
3368
+ "City": "Denver, CO",
3369
+ "Postcode": "80202",
3370
+ "Country": "US",
3371
+ "ParentOrganisationReference": "",
3372
+ "AuthorisationServers": [
3373
+ {
3374
+ "AuthorisationServerId": "274f6f85-4830-440f-ab26-25958aa47f8c",
3375
+ "AutoRegistrationSupported": false,
3376
+ "AutoRegistrationNotificationWebhook": null,
3377
+ "SupportsCiba": false,
3378
+ "SupportsDCR": false,
3379
+ "SupportsRedirect": false,
3380
+ "ApiResources": [],
3381
+ "AuthorisationServerCertifications": [],
3382
+ "CustomerFriendlyDescription": "Ping Identity ConnectID Sandbox",
3383
+ "CustomerFriendlyLogoUri": "https://bank-01.pingapac.com/assets/images/ping-logo.svg",
3384
+ "CustomerFriendlyName": "Bank of Ping",
3385
+ "DeveloperPortalUri": "https://bank-01.pingapac.com/developers",
3386
+ "TermsOfServiceUri": "https://bank-01.pingapac.com/tos",
3387
+ "NotificationWebhookAddedDate": "2023-01-05",
3388
+ "OpenIDDiscoveryDocument": "https://bank-01.pingapac.com/.well-known/openid-configuration",
3389
+ "Issuer": "https://bank-01.pingapac.com",
3390
+ "PayloadSigningCertLocationUri": "https://bank-01.pingapac.com/pf/JWKS",
3391
+ "CreatedAt": 1672891085,
3392
+ "ParentAuthorisationServerId": null,
3393
+ "DeprecatedDate": null,
3394
+ "RetirementDate": null,
3395
+ "SupersededByAuthorisationServerId": null
3396
+ }
3397
+ ],
3398
+ "OrgDomainClaims": [
3399
+ {
3400
+ "AuthorisationDomainName": "connectID",
3401
+ "AuthorityName": "connectID",
3402
+ "RegistrationId": "ConnectID",
3403
+ "Status": "Active"
3404
+ }
3405
+ ],
3406
+ "OrgDomainRoleClaims": [
3407
+ {
3408
+ "Status": "Active",
3409
+ "AuthorisationDomain": "connectID",
3410
+ "Role": "IDP",
3411
+ "Authorisations": [],
3412
+ "RegistrationId": "IDP",
3413
+ "RoleType": "Directory",
3414
+ "Exclusive": false,
3415
+ "Metadata": []
3416
+ },
3417
+ {
3418
+ "Status": "Active",
3419
+ "AuthorisationDomain": "connectID",
3420
+ "Role": "RP-CORE",
3421
+ "Authorisations": [],
3422
+ "RegistrationId": "RP-CORE",
3423
+ "RoleType": "Federation",
3424
+ "Exclusive": false,
3425
+ "Metadata": [
3426
+ {
3427
+ "MetadataId": "109bcd54-2914-4f98-90b9-be2647819e7f",
3428
+ "DomainRoleName": "RP-CORE",
3429
+ "Type": "claim",
3430
+ "Name": "email"
3431
+ },
3432
+ {
3433
+ "MetadataId": "0cd7452d-6b6d-4151-b756-c99a2cfac609",
3434
+ "DomainRoleName": "RP-CORE",
3435
+ "Type": "claim",
3436
+ "Name": "phone_number"
3437
+ },
3438
+ {
3439
+ "MetadataId": "261ec1fa-a6fb-46cc-acb7-7faa0412f22a",
3440
+ "DomainRoleName": "RP-CORE",
3441
+ "Type": "claim",
3442
+ "Name": "middle_name"
3443
+ },
3444
+ {
3445
+ "MetadataId": "8872dc8d-4271-458b-b73c-7ce91b7de552",
3446
+ "DomainRoleName": "RP-CORE",
3447
+ "Type": "claim",
3448
+ "Name": "address"
3449
+ },
3450
+ {
3451
+ "MetadataId": "15fcc989-1bb6-4c87-ac3d-77bda8eb34da",
3452
+ "DomainRoleName": "RP-CORE",
3453
+ "Type": "claim",
3454
+ "Name": "name"
3455
+ },
3456
+ {
3457
+ "MetadataId": "15a13e15-cf43-41dd-9661-7a14996900ca",
3458
+ "DomainRoleName": "RP-CORE",
3459
+ "Type": "claim",
3460
+ "Name": "family_name"
3461
+ },
3462
+ {
3463
+ "MetadataId": "14f5947c-1172-49a8-a04c-8e4f89fd4503",
3464
+ "DomainRoleName": "RP-CORE",
3465
+ "Type": "scope",
3466
+ "Name": "openid"
3467
+ },
3468
+ {
3469
+ "MetadataId": "d15dc17f-8588-431c-a66d-82946d009107",
3470
+ "DomainRoleName": "RP-CORE",
3471
+ "Type": "grant_type",
3472
+ "Name": "authorization_code"
3473
+ },
3474
+ {
3475
+ "MetadataId": "c5414d68-ef52-41e6-a127-762dfae96e4e",
3476
+ "DomainRoleName": "RP-CORE",
3477
+ "Type": "claim",
3478
+ "Name": "given_name"
3479
+ },
3480
+ {
3481
+ "MetadataId": "e94b2480-f774-4858-b680-5acf24afbdb5",
3482
+ "DomainRoleName": "RP-CORE",
3483
+ "Type": "claim",
3484
+ "Name": "birthdate"
3485
+ },
3486
+ {
3487
+ "MetadataId": "6201486b-120f-4f95-b1c8-1b0fa0d71056",
3488
+ "DomainRoleName": "RP-CORE",
3489
+ "Type": "claim",
3490
+ "Name": "txn"
3491
+ },
3492
+ {
3493
+ "MetadataId": "ec9bbff4-4486-4f2f-bf0d-9d652b899542",
3494
+ "DomainRoleName": "RP-CORE",
3495
+ "Type": "response_type",
3496
+ "Name": "code"
3497
+ }
3498
+ ]
3499
+ }
3500
+ ]
3501
+ },
3502
+ {
3503
+ "OrganisationId": "908e5e23-d163-47ee-806a-39d6ae2884be",
3504
+ "Status": "Active",
3505
+ "OrganisationName": "Paul R Test Org",
3506
+ "CreatedOn": "2022-08-02T04:07:32.230Z",
3507
+ "LegalEntityName": "Paul R Test Org",
3508
+ "CountryOfRegistration": "AU",
3509
+ "CompanyRegister": "ABN",
3510
+ "Tag": [],
3511
+ "Size": "",
3512
+ "RegistrationNumber": "1234567890",
3513
+ "RegistrationId": null,
3514
+ "RegisteredName": "Paul R Test Org",
3515
+ "AddressLine1": "Level 1",
3516
+ "AddressLine2": "255 George St",
3517
+ "City": "Sydney",
3518
+ "Postcode": "2000",
3519
+ "Country": "AU",
3520
+ "ParentOrganisationReference": "",
3521
+ "AuthorisationServers": [
3522
+ {
3523
+ "AuthorisationServerId": "154fa724-4177-44f5-8b8c-05572ce247da",
3524
+ "AutoRegistrationSupported": false,
3525
+ "AutoRegistrationNotificationWebhook": null,
3526
+ "SupportsCiba": false,
3527
+ "SupportsDCR": false,
3528
+ "SupportsRedirect": false,
3529
+ "ApiResources": [],
3530
+ "AuthorisationServerCertifications": [
3531
+ {
3532
+ "CertificationStartDate": "19/09/2022",
3533
+ "CertificationExpirationDate": "19/09/2023",
3534
+ "CertificationId": "f4470c34-f52e-4011-af97-77a99c74991f",
3535
+ "AuthorisationServerId": "154fa724-4177-44f5-8b8c-05572ce247da",
3536
+ "Status": "Self-Certified",
3537
+ "ProfileVariant": "Identity Provider",
3538
+ "ProfileType": "TDIF Accreditation",
3539
+ "ProfileVersion": 2,
3540
+ "CertificationURI": "https://static.relyingparty.net/text.zip"
3541
+ },
3542
+ {
3543
+ "CertificationStartDate": "11/04/2023",
3544
+ "CertificationExpirationDate": "10/04/2024",
3545
+ "CertificationId": "55c07cfb-a723-47ca-ba0e-01e346988119",
3546
+ "AuthorisationServerId": "154fa724-4177-44f5-8b8c-05572ce247da",
3547
+ "Status": "Certified",
3548
+ "ProfileVariant": "app",
3549
+ "ProfileType": "Channel",
3550
+ "ProfileVersion": 1,
3551
+ "CertificationURI": "https://cdn.dev.connectid.com.au/certification/certification-result.zip"
3552
+ },
3553
+ {
3554
+ "CertificationStartDate": "11/04/2023",
3555
+ "CertificationExpirationDate": "10/04/2024",
3556
+ "CertificationId": "c9ecbb2c-91c3-49e8-933b-df39fa38a151",
3557
+ "AuthorisationServerId": "154fa724-4177-44f5-8b8c-05572ce247da",
3558
+ "Status": "Certified",
3559
+ "ProfileVariant": "beneficiary_account_au",
3560
+ "ProfileType": "ConnectID Claims",
3561
+ "ProfileVersion": 1,
3562
+ "CertificationURI": "https://cdn.dev.connectid.com.au/certification/certification-result.zip"
3563
+ },
3564
+ {
3565
+ "CertificationStartDate": "11/04/2023",
3566
+ "CertificationExpirationDate": "10/04/2024",
3567
+ "CertificationId": "4694f862-6e42-48bd-907d-dbc1cde47512",
3568
+ "AuthorisationServerId": "154fa724-4177-44f5-8b8c-05572ce247da",
3569
+ "Status": "Certified",
3570
+ "ProfileVariant": "web",
3571
+ "ProfileType": "Channel",
3572
+ "ProfileVersion": 1,
3573
+ "CertificationURI": "https://cdn.dev.connectid.com.au/certification/certification-result.zip"
3574
+ },
3575
+ {
3576
+ "CertificationStartDate": "11/04/2023",
3577
+ "CertificationExpirationDate": "10/04/2024",
3578
+ "CertificationId": "1ec4b5ca-1cc0-4f4e-b332-1625236dd970",
3579
+ "AuthorisationServerId": "154fa724-4177-44f5-8b8c-05572ce247da",
3580
+ "Status": "Certified",
3581
+ "ProfileVariant": "email",
3582
+ "ProfileType": "ConnectID Claims",
3583
+ "ProfileVersion": 1,
3584
+ "CertificationURI": "https://cdn.dev.connectid.com.au/certification/certification-result.zip"
3585
+ },
3586
+ {
3587
+ "CertificationStartDate": "11/04/2023",
3588
+ "CertificationExpirationDate": "10/04/2024",
3589
+ "CertificationId": "4900a42f-6de7-4760-bd3d-f8b30ef37781",
3590
+ "AuthorisationServerId": "154fa724-4177-44f5-8b8c-05572ce247da",
3591
+ "Status": "Certified",
3592
+ "ProfileVariant": "phone_number",
3593
+ "ProfileType": "ConnectID Claims",
3594
+ "ProfileVersion": 1,
3595
+ "CertificationURI": "https://cdn.dev.connectid.com.au/certification/certification-result.zip"
3596
+ },
3597
+ {
3598
+ "CertificationStartDate": "11/04/2023",
3599
+ "CertificationExpirationDate": "10/04/2024",
3600
+ "CertificationId": "24a7204f-aabb-4f8d-9110-3c9f2a63758d",
3601
+ "AuthorisationServerId": "154fa724-4177-44f5-8b8c-05572ce247da",
3602
+ "Status": "Certified",
3603
+ "ProfileVariant": "over18",
3604
+ "ProfileType": "ConnectID Claims",
3605
+ "ProfileVersion": 1,
3606
+ "CertificationURI": "https://cdn.dev.connectid.com.au/certification/certification-result.zip"
3607
+ },
3608
+ {
3609
+ "CertificationStartDate": "11/04/2023",
3610
+ "CertificationExpirationDate": "10/04/2024",
3611
+ "CertificationId": "355b38cd-2fbe-435b-9799-8d235dd35d7c",
3612
+ "AuthorisationServerId": "154fa724-4177-44f5-8b8c-05572ce247da",
3613
+ "Status": "Certified",
3614
+ "ProfileVariant": "name",
3615
+ "ProfileType": "ConnectID Claims",
3616
+ "ProfileVersion": 1,
3617
+ "CertificationURI": "https://cdn.dev.connectid.com.au/certification/certification-result.zip"
3618
+ },
3619
+ {
3620
+ "CertificationStartDate": "19/09/2022",
3621
+ "CertificationExpirationDate": "19/09/2023",
3622
+ "CertificationId": "a42736d9-a6d1-4472-996f-35f246f6b45c",
3623
+ "AuthorisationServerId": "154fa724-4177-44f5-8b8c-05572ce247da",
3624
+ "Status": "Awaiting Certification",
3625
+ "ProfileVariant": "FAPI2 Adv. OP w/Private Key, PAR",
3626
+ "ProfileType": "Redirect",
3627
+ "ProfileVersion": 2,
3628
+ "CertificationURI": "https://static.relyingparty.net/text.zip"
3629
+ },
3630
+ {
3631
+ "CertificationStartDate": "11/04/2023",
3632
+ "CertificationExpirationDate": "10/04/2024",
3633
+ "CertificationId": "cd6301e5-b3ce-4539-bac3-bf72ced6d0e4",
3634
+ "AuthorisationServerId": "154fa724-4177-44f5-8b8c-05572ce247da",
3635
+ "Status": "Certified",
3636
+ "ProfileVariant": "address",
3637
+ "ProfileType": "ConnectID Claims",
3638
+ "ProfileVersion": 1,
3639
+ "CertificationURI": "https://cdn.dev.connectid.com.au/certification/certification-result.zip"
3640
+ },
3641
+ {
3642
+ "CertificationStartDate": "17/04/2023",
3643
+ "CertificationExpirationDate": "16/04/2024",
3644
+ "CertificationId": "2caf8271-d826-45ad-a1a1-68a7f26410bc",
3645
+ "AuthorisationServerId": "154fa724-4177-44f5-8b8c-05572ce247da",
3646
+ "Status": "Self-Certified",
3647
+ "ProfileVariant": "beneficiary_account_au_payid",
3648
+ "ProfileType": "ConnectID Claims",
3649
+ "ProfileVersion": 1,
3650
+ "CertificationURI": "https://cdn.dev.connectid.com.au/certification/certification-result.zip"
3651
+ },
3652
+ {
3653
+ "CertificationStartDate": "11/04/2023",
3654
+ "CertificationExpirationDate": "10/04/2024",
3655
+ "CertificationId": "69f275e5-9787-40c0-88b6-1a9508929153",
3656
+ "AuthorisationServerId": "154fa724-4177-44f5-8b8c-05572ce247da",
3657
+ "Status": "Certified",
3658
+ "ProfileVariant": "birthdate",
3659
+ "ProfileType": "ConnectID Claims",
3660
+ "ProfileVersion": 1,
3661
+ "CertificationURI": "https://cdn.dev.connectid.com.au/certification/certification-result.zip"
3662
+ }
3663
+ ],
3664
+ "CustomerFriendlyDescription": "Do not use - Paul's Test Bank",
3665
+ "CustomerFriendlyLogoUri": "https://static.sandbox.connectid.com.au/BankW.svg",
3666
+ "CustomerFriendlyName": "zz - Do not use - Paul's \"Test\" Auth Server",
3667
+ "DeveloperPortalUri": null,
3668
+ "TermsOfServiceUri": null,
3669
+ "NotificationWebhookAddedDate": null,
3670
+ "OpenIDDiscoveryDocument": "https://auth.bank1.directory.sandbox.connectid.com.au/.well-known/openid-configuration",
3671
+ "Issuer": "https://auth.bank1.directory.sandbox.connectid.com.au",
3672
+ "PayloadSigningCertLocationUri": "https://auth.bank1.directory.sandbox.connectid.com.au/na",
3673
+ "CreatedAt": 1659487163,
3674
+ "ParentAuthorisationServerId": null,
3675
+ "DeprecatedDate": "2050-01-02",
3676
+ "RetirementDate": "2050-01-03",
3677
+ "SupersededByAuthorisationServerId": null
3678
+ }
3679
+ ],
3680
+ "OrgDomainClaims": [
3681
+ {
3682
+ "AuthorisationDomainName": "connectID",
3683
+ "AuthorityName": "connectID",
3684
+ "RegistrationId": "3c51324d-0591-4e03-9eec-d5fa311fadb2",
3685
+ "Status": "Active"
3686
+ }
3687
+ ],
3688
+ "OrgDomainRoleClaims": [
3689
+ {
3690
+ "Status": "Active",
3691
+ "AuthorisationDomain": "connectID",
3692
+ "Role": "IDP",
3693
+ "Authorisations": [],
3694
+ "RegistrationId": "idp",
3695
+ "RoleType": "Directory",
3696
+ "Exclusive": false,
3697
+ "Metadata": []
3698
+ },
3699
+ {
3700
+ "Status": "Active",
3701
+ "AuthorisationDomain": "connectID",
3702
+ "Role": "RP-CORE",
3703
+ "Authorisations": [],
3704
+ "RegistrationId": "081ee8c8-456b-45b6-a0f4-c55804867e96",
3705
+ "RoleType": "Federation",
3706
+ "Exclusive": false,
3707
+ "Metadata": [
3708
+ {
3709
+ "MetadataId": "109bcd54-2914-4f98-90b9-be2647819e7f",
3710
+ "DomainRoleName": "RP-CORE",
3711
+ "Type": "claim",
3712
+ "Name": "email"
3713
+ },
3714
+ {
3715
+ "MetadataId": "0cd7452d-6b6d-4151-b756-c99a2cfac609",
3716
+ "DomainRoleName": "RP-CORE",
3717
+ "Type": "claim",
3718
+ "Name": "phone_number"
3719
+ },
3720
+ {
3721
+ "MetadataId": "261ec1fa-a6fb-46cc-acb7-7faa0412f22a",
3722
+ "DomainRoleName": "RP-CORE",
3723
+ "Type": "claim",
3724
+ "Name": "middle_name"
3725
+ },
3726
+ {
3727
+ "MetadataId": "8872dc8d-4271-458b-b73c-7ce91b7de552",
3728
+ "DomainRoleName": "RP-CORE",
3729
+ "Type": "claim",
3730
+ "Name": "address"
3731
+ },
3732
+ {
3733
+ "MetadataId": "15fcc989-1bb6-4c87-ac3d-77bda8eb34da",
3734
+ "DomainRoleName": "RP-CORE",
3735
+ "Type": "claim",
3736
+ "Name": "name"
3737
+ },
3738
+ {
3739
+ "MetadataId": "15a13e15-cf43-41dd-9661-7a14996900ca",
3740
+ "DomainRoleName": "RP-CORE",
3741
+ "Type": "claim",
3742
+ "Name": "family_name"
3743
+ },
3744
+ {
3745
+ "MetadataId": "14f5947c-1172-49a8-a04c-8e4f89fd4503",
3746
+ "DomainRoleName": "RP-CORE",
3747
+ "Type": "scope",
3748
+ "Name": "openid"
3749
+ },
3750
+ {
3751
+ "MetadataId": "d15dc17f-8588-431c-a66d-82946d009107",
3752
+ "DomainRoleName": "RP-CORE",
3753
+ "Type": "grant_type",
3754
+ "Name": "authorization_code"
3755
+ },
3756
+ {
3757
+ "MetadataId": "c5414d68-ef52-41e6-a127-762dfae96e4e",
3758
+ "DomainRoleName": "RP-CORE",
3759
+ "Type": "claim",
3760
+ "Name": "given_name"
3761
+ },
3762
+ {
3763
+ "MetadataId": "e94b2480-f774-4858-b680-5acf24afbdb5",
3764
+ "DomainRoleName": "RP-CORE",
3765
+ "Type": "claim",
3766
+ "Name": "birthdate"
3767
+ },
3768
+ {
3769
+ "MetadataId": "6201486b-120f-4f95-b1c8-1b0fa0d71056",
3770
+ "DomainRoleName": "RP-CORE",
3771
+ "Type": "claim",
3772
+ "Name": "txn"
3773
+ },
3774
+ {
3775
+ "MetadataId": "ec9bbff4-4486-4f2f-bf0d-9d652b899542",
3776
+ "DomainRoleName": "RP-CORE",
3777
+ "Type": "response_type",
3778
+ "Name": "code"
3779
+ }
3780
+ ]
3781
+ },
3782
+ {
3783
+ "Status": "Active",
3784
+ "AuthorisationDomain": "connectID",
3785
+ "Role": "RS",
3786
+ "Authorisations": [],
3787
+ "RegistrationId": "0c37262d-5e4c-4699-b5a0-a30f1f83468e",
3788
+ "RoleType": "Directory",
3789
+ "Exclusive": false,
3790
+ "Metadata": []
3791
+ }
3792
+ ]
3793
+ }
3794
+ ];