Identity Providers
Operations Summary
| Method | Endpoint | Description |
|---|---|---|
| GET | /api/identity-providers/ |
List Identity Providers |
| GET | /api/identity-providers/{provider}/ |
Retrieve |
| POST | /api/identity-providers/ |
Create |
| PUT | /api/identity-providers/{provider}/ |
Update |
| PATCH | /api/identity-providers/{provider}/ |
Partial Update |
| DELETE | /api/identity-providers/{provider}/ |
Delete |
List Identity Providers
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 | |
- API Source:
identity_providers_list
1 2 3 4 5 6 7 8 9 10 | |
| Name | Type | Description |
|---|---|---|
page |
integer | A page number within the paginated result set. |
page_size |
integer | Number of results to return per page. |
200 -
The response body is an array of objects, where each object has the following structure:
| Field | Type | Description |
|---|---|---|
provider |
string | |
is_active |
boolean | |
client_id |
string | ID of application used for OAuth authentication. |
client_secret |
string | Application secret key. |
verify_ssl |
boolean | |
enable_post_logout_redirect |
boolean | |
enable_pkce |
boolean | |
discovery_url |
string | The endpoint for endpoint discovery. |
userinfo_url |
string | The endpoint for fetching user info. |
token_url |
string | The endpoint for obtaining auth token. |
auth_url |
string | The endpoint for authorization request flow. |
logout_url |
string | The endpoint used to redirect after sign-out. |
label |
string | Human-readable identity provider is label. |
management_url |
string | The endpoint for user details management. |
protected_fields |
any | |
extra_scope |
string | Space-separated list of scopes to request during authentication. |
user_field |
string | The field in Waldur User model to be used for looking up the user |
user_claim |
string | The OIDC claim from the userinfo endpoint to be used as the value for the lookup field. |
attribute_mapping |
any | A JSON object mapping Waldur User model fields to OIDC claims. Example: |
extra_fields |
string | Space-separated list of extra fields to persist. |
Retrieve
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 | |
- API Source:
identity_providers_retrieve
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
provider |
string | ✓ |
200 -
| Field | Type | Description |
|---|---|---|
provider |
string | |
is_active |
boolean | |
client_id |
string | ID of application used for OAuth authentication. |
client_secret |
string | Application secret key. |
verify_ssl |
boolean | |
enable_post_logout_redirect |
boolean | |
enable_pkce |
boolean | |
discovery_url |
string | The endpoint for endpoint discovery. |
userinfo_url |
string | The endpoint for fetching user info. |
token_url |
string | The endpoint for obtaining auth token. |
auth_url |
string | The endpoint for authorization request flow. |
logout_url |
string | The endpoint used to redirect after sign-out. |
label |
string | Human-readable identity provider is label. |
management_url |
string | The endpoint for user details management. |
protected_fields |
any | |
extra_scope |
string | Space-separated list of scopes to request during authentication. |
user_field |
string | The field in Waldur User model to be used for looking up the user |
user_claim |
string | The OIDC claim from the userinfo endpoint to be used as the value for the lookup field. |
attribute_mapping |
any | A JSON object mapping Waldur User model fields to OIDC claims. Example: |
extra_fields |
string | Space-separated list of extra fields to persist. |
Create
1 2 3 4 5 6 7 8 9 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | |
- Model Source:
IdentityProviderRequest - API Source:
identity_providers_create
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | |
| Field | Type | Required | Description |
|---|---|---|---|
provider |
string | ✓ | |
is_active |
boolean | ||
client_id |
string | ✓ | ID of application used for OAuth authentication. |
client_secret |
string | ✓ | Application secret key. |
verify_ssl |
boolean | ||
enable_post_logout_redirect |
boolean | ||
enable_pkce |
boolean | ||
discovery_url |
string | ✓ | The endpoint for endpoint discovery. |
label |
string | ✓ | Human-readable identity provider is label. |
management_url |
string | The endpoint for user details management. | |
protected_fields |
any | ||
extra_scope |
string | Space-separated list of scopes to request during authentication. | |
user_field |
string | The field in Waldur User model to be used for looking up the user | |
user_claim |
string | The OIDC claim from the userinfo endpoint to be used as the value for the lookup field. | |
attribute_mapping |
any | A JSON object mapping Waldur User model fields to OIDC claims. Example: | |
extra_fields |
string | Space-separated list of extra fields to persist. |
201 -
| Field | Type | Description |
|---|---|---|
provider |
string | |
is_active |
boolean | |
client_id |
string | ID of application used for OAuth authentication. |
client_secret |
string | Application secret key. |
verify_ssl |
boolean | |
enable_post_logout_redirect |
boolean | |
enable_pkce |
boolean | |
discovery_url |
string | The endpoint for endpoint discovery. |
userinfo_url |
string | The endpoint for fetching user info. |
token_url |
string | The endpoint for obtaining auth token. |
auth_url |
string | The endpoint for authorization request flow. |
logout_url |
string | The endpoint used to redirect after sign-out. |
label |
string | Human-readable identity provider is label. |
management_url |
string | The endpoint for user details management. |
protected_fields |
any | |
extra_scope |
string | Space-separated list of scopes to request during authentication. |
user_field |
string | The field in Waldur User model to be used for looking up the user |
user_claim |
string | The OIDC claim from the userinfo endpoint to be used as the value for the lookup field. |
attribute_mapping |
any | A JSON object mapping Waldur User model fields to OIDC claims. Example: |
extra_fields |
string | Space-separated list of extra fields to persist. |
Update
1 2 3 4 5 6 7 8 9 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | |
- Model Source:
IdentityProviderRequest - API Source:
identity_providers_update
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | |
| Name | Type | Required |
|---|---|---|
provider |
string | ✓ |
| Field | Type | Required | Description |
|---|---|---|---|
provider |
string | ✓ | |
is_active |
boolean | ||
client_id |
string | ✓ | ID of application used for OAuth authentication. |
client_secret |
string | ✓ | Application secret key. |
verify_ssl |
boolean | ||
enable_post_logout_redirect |
boolean | ||
enable_pkce |
boolean | ||
discovery_url |
string | ✓ | The endpoint for endpoint discovery. |
label |
string | ✓ | Human-readable identity provider is label. |
management_url |
string | The endpoint for user details management. | |
protected_fields |
any | ||
extra_scope |
string | Space-separated list of scopes to request during authentication. | |
user_field |
string | The field in Waldur User model to be used for looking up the user | |
user_claim |
string | The OIDC claim from the userinfo endpoint to be used as the value for the lookup field. | |
attribute_mapping |
any | A JSON object mapping Waldur User model fields to OIDC claims. Example: | |
extra_fields |
string | Space-separated list of extra fields to persist. |
200 -
| Field | Type | Description |
|---|---|---|
provider |
string | |
is_active |
boolean | |
client_id |
string | ID of application used for OAuth authentication. |
client_secret |
string | Application secret key. |
verify_ssl |
boolean | |
enable_post_logout_redirect |
boolean | |
enable_pkce |
boolean | |
discovery_url |
string | The endpoint for endpoint discovery. |
userinfo_url |
string | The endpoint for fetching user info. |
token_url |
string | The endpoint for obtaining auth token. |
auth_url |
string | The endpoint for authorization request flow. |
logout_url |
string | The endpoint used to redirect after sign-out. |
label |
string | Human-readable identity provider is label. |
management_url |
string | The endpoint for user details management. |
protected_fields |
any | |
extra_scope |
string | Space-separated list of scopes to request during authentication. |
user_field |
string | The field in Waldur User model to be used for looking up the user |
user_claim |
string | The OIDC claim from the userinfo endpoint to be used as the value for the lookup field. |
attribute_mapping |
any | A JSON object mapping Waldur User model fields to OIDC claims. Example: |
extra_fields |
string | Space-separated list of extra fields to persist. |
Partial Update
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | |
- Model Source:
PatchedIdentityProviderRequest - API Source:
identity_providers_partial_update
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
provider |
string | ✓ |
| Field | Type | Required | Description |
|---|---|---|---|
provider |
string | ||
is_active |
boolean | ||
client_id |
string | ID of application used for OAuth authentication. | |
client_secret |
string | Application secret key. | |
verify_ssl |
boolean | ||
enable_post_logout_redirect |
boolean | ||
enable_pkce |
boolean | ||
discovery_url |
string | The endpoint for endpoint discovery. | |
label |
string | Human-readable identity provider is label. | |
management_url |
string | The endpoint for user details management. | |
protected_fields |
any | ||
extra_scope |
string | Space-separated list of scopes to request during authentication. | |
user_field |
string | The field in Waldur User model to be used for looking up the user | |
user_claim |
string | The OIDC claim from the userinfo endpoint to be used as the value for the lookup field. | |
attribute_mapping |
any | A JSON object mapping Waldur User model fields to OIDC claims. Example: | |
extra_fields |
string | Space-separated list of extra fields to persist. |
200 -
| Field | Type | Description |
|---|---|---|
provider |
string | |
is_active |
boolean | |
client_id |
string | ID of application used for OAuth authentication. |
client_secret |
string | Application secret key. |
verify_ssl |
boolean | |
enable_post_logout_redirect |
boolean | |
enable_pkce |
boolean | |
discovery_url |
string | The endpoint for endpoint discovery. |
userinfo_url |
string | The endpoint for fetching user info. |
token_url |
string | The endpoint for obtaining auth token. |
auth_url |
string | The endpoint for authorization request flow. |
logout_url |
string | The endpoint used to redirect after sign-out. |
label |
string | Human-readable identity provider is label. |
management_url |
string | The endpoint for user details management. |
protected_fields |
any | |
extra_scope |
string | Space-separated list of scopes to request during authentication. |
user_field |
string | The field in Waldur User model to be used for looking up the user |
user_claim |
string | The OIDC claim from the userinfo endpoint to be used as the value for the lookup field. |
attribute_mapping |
any | A JSON object mapping Waldur User model fields to OIDC claims. Example: |
extra_fields |
string | Space-separated list of extra fields to persist. |
Delete
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 | |
- API Source:
identity_providers_destroy
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
provider |
string | ✓ |
204 - No response body