|
5 | 5 | This is the latest RESTful API for SCIM 2.0 Roles API in Asgardeo organizations. |
6 | 6 | This API allows listing roles and updating users and groups of the roles. |
7 | 7 | servers: |
8 | | - - url: https://api.asgardeo.io/t/{root-organization-name}/o/scim2/v2 |
| 8 | + - url: https://api.asgardeo.io/t/{root-organization-name}/o/scim2 |
9 | 9 | variables: |
10 | 10 | server-url: |
11 | 11 | default: https://api.asgardeo.io/t/{root-organization-name}/o/ |
|
89 | 89 | - lang: Curl |
90 | 90 | source: | |
91 | 91 | curl -X 'GET' \ |
92 | | - 'https://api.asgardeo.io/t/{root-organization-name}/o/scim2/v2/Roles' \ |
| 92 | + 'https://api.asgardeo.io/t/{root-organization-name}/o/scim2/v3/Roles' \ |
93 | 93 | -H 'accept: application/scim+json' \ |
94 | 94 | -H 'Authorization: Bearer {bearer_token}' |
95 | 95 | post: |
@@ -141,7 +141,7 @@ paths: |
141 | 141 | - lang: Curl |
142 | 142 | source: | |
143 | 143 | curl -X 'POST' \ |
144 | | - 'https://api.asgardeo.io/t/{root-organization-name}/o/scim2/v2/Roles' \ |
| 144 | + 'https://api.asgardeo.io/t/{root-organization-name}/o/scim2/v3/Roles' \ |
145 | 145 | -H 'accept: application/scim+json' \ |
146 | 146 | -H 'Content-Type: application/scim+json' \ |
147 | 147 | -H 'Authorization: Bearer {bearer_token}' \ |
@@ -281,7 +281,7 @@ paths: |
281 | 281 | - lang: Curl |
282 | 282 | source: | |
283 | 283 | curl -X 'GET' \ |
284 | | - 'https://api.asgardeo.io/t/{root-organization-name}/o/scim2/v2/Roles/{role-id}' \ |
| 284 | + 'https://api.asgardeo.io/t/{root-organization-name}/o/scim2/v3/Roles/{role-id}' \ |
285 | 285 | -H 'accept: application/scim+json' \ |
286 | 286 | -H 'Authorization: Bearer {bearer_token}' |
287 | 287 | put: |
@@ -349,7 +349,7 @@ paths: |
349 | 349 | - lang: Curl |
350 | 350 | source: | |
351 | 351 | curl -X 'PUT' \ |
352 | | - 'https://api.asgardeo.io/t/{root-organization-name}/o/scim2/v2/Roles/{role-id}' \ |
| 352 | + 'https://api.asgardeo.io/t/{root-organization-name}/o/scim2/v3/Roles/{role-id}' \ |
353 | 353 | -H 'accept: application/scim+json' \ |
354 | 354 | -H 'Content-Type: application/scim+json' \ |
355 | 355 | -H 'Authorization: Bearer {bearer_token}' \ |
@@ -411,7 +411,7 @@ paths: |
411 | 411 | - lang: Curl |
412 | 412 | source: | |
413 | 413 | curl -X 'DELETE' \ |
414 | | - 'https://api.asgardeo.io/t/{root-organization-name}/o/scim2/v2/Roles/{role-id}' \ |
| 414 | + 'https://api.asgardeo.io/t/{root-organization-name}/o/scim2/v3/Roles/{role-id}' \ |
415 | 415 | -H 'accept: application/scim+json' \ |
416 | 416 | -H 'Authorization: Bearer {bearer_token}' |
417 | 417 | patch: |
@@ -470,7 +470,7 @@ paths: |
470 | 470 | - lang: Curl |
471 | 471 | source: | |
472 | 472 | curl -X 'PATCH' \ |
473 | | - 'https://api.asgardeo.io/t/{root-organization-name}/o/scim2/v2/Roles/{role-id}' \ |
| 473 | + 'https://api.asgardeo.io/t/{root-organization-name}/o/scim2/v3/Roles/{role-id}' \ |
474 | 474 | -H 'accept: application/scim+json' \ |
475 | 475 | -H 'Content-Type: application/scim+json' \ |
476 | 476 | -H 'Authorization: Bearer {bearer_token}' \ |
@@ -558,7 +558,7 @@ paths: |
558 | 558 | x-codeSamples: |
559 | 559 | - lang: Curl |
560 | 560 | source: | |
561 | | - curl -X 'PUT' 'https://api.asgardeo.io/t/{root-organization-name}/o/scim2/v2/Roles/{role-id}/Users' \ |
| 561 | + curl -X 'PUT' 'https://api.asgardeo.io/t/{root-organization-name}/o/scim2/v3/Roles/{role-id}/Users' \ |
562 | 562 | --header 'accept: application/scim+json' \ |
563 | 563 | --header 'Content-Type: application/scim+json' \ |
564 | 564 | --header 'Authorization: Bearer {bearer_token}' \ |
@@ -624,7 +624,7 @@ paths: |
624 | 624 | x-codeSamples: |
625 | 625 | - lang: Curl |
626 | 626 | source: | |
627 | | - curl -X 'PATCH' 'https://api.asgardeo.io/t/{root-organization-name}/o/scim2/v2/Roles/{role-id}/Users' \ |
| 627 | + curl -X 'PATCH' 'https://api.asgardeo.io/t/{root-organization-name}/o/scim2/v3/Roles/{role-id}/Users' \ |
628 | 628 | -H 'accept: application/scim+json' \ |
629 | 629 | -H 'Content-Type: application/scim+json' \ |
630 | 630 | -H 'Authorization: Bearer {bearer_token}' \ |
@@ -714,7 +714,7 @@ paths: |
714 | 714 | x-codeSamples: |
715 | 715 | - lang: Curl |
716 | 716 | source: | |
717 | | - curl -X 'PUT' 'https://api.asgardeo.io/t/{root-organization-name}/o/scim2/v2/Roles/{role-id}/Groups' \ |
| 717 | + curl -X 'PUT' 'https://api.asgardeo.io/t/{root-organization-name}/o/scim2/v3/Roles/{role-id}/Groups' \ |
718 | 718 | --header 'accept: application/scim+json' \ |
719 | 719 | --header 'Content-Type: application/scim+json' \ |
720 | 720 | --header 'Authorization: Bearer {bearer_token}' \ |
@@ -781,7 +781,7 @@ paths: |
781 | 781 | x-codeSamples: |
782 | 782 | - lang: Curl |
783 | 783 | source: | |
784 | | - curl -X 'PATCH' 'https://api.asgardeo.io/t/{root-organization-name}/o/scim2/v2/Roles/{role-id}/Groups' \ |
| 784 | + curl -X 'PATCH' 'https://api.asgardeo.io/t/{root-organization-name}/o/scim2/v3/Roles/{role-id}/Groups' \ |
785 | 785 | --header 'accept: application/scim+json' \ |
786 | 786 | --header 'Content-Type: application/scim+json' \ |
787 | 787 | --header 'Authorization: Bearer {bearer_token}' \ |
|
0 commit comments