Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'doc/api/saml.md')
-rw-r--r--doc/api/saml.md8
1 files changed, 3 insertions, 5 deletions
diff --git a/doc/api/saml.md b/doc/api/saml.md
index 810ed382d49..4b0e57111cc 100644
--- a/doc/api/saml.md
+++ b/doc/api/saml.md
@@ -35,9 +35,7 @@ response attributes:
Example request:
```shell
-curl --location --request GET "https://gdk.test:3443/api/v4/groups/33/saml/identities" \
---header "<PRIVATE-TOKEN>" \
---form "extern_uid=<ID_TO_BE_UPDATED>" \
+curl --location --request GET "https://gitlab.example.com/api/v4/groups/33/saml/identities" --header "<PRIVATE-TOKEN>"
```
Example response:
@@ -53,7 +51,7 @@ Example response:
## Update `extern_uid` field for a SAML identity
-Update `extern_uid` field for a SAML identity. Field that can be updated are:
+Update `extern_uid` field for a SAML identity:
| SAML IdP attribute | GitLab field |
| ------------------ | ------------ |
@@ -72,7 +70,7 @@ Parameters:
Example request:
```shell
-curl --location --request PATCH "https://gdk.test:3443/api/v4/groups/33/saml/sydney_jones" \
+curl --location --request PATCH "https://gitlab.example.com/api/v4/groups/33/saml/sydney_jones" \
--header "<PRIVATE TOKEN>" \
--form "extern_uid=sydney_jones_new" \
```