Skip to content
Snippets Groups Projects
Commit 2914de57 authored by Ashraf Khamis's avatar Ashraf Khamis
Browse files

Merge branch 'scarpenter-update-troubleshooting-docs-20nov23' into 'master'

Correct Example SCIM API call

See merge request !137440



Merged-by: default avatarAshraf Khamis <akhamis@gitlab.com>
Approved-by: default avatarAsmaa Hassan <ahassanahmed@gitlab.com>
Approved-by: default avatarAshraf Khamis <akhamis@gitlab.com>
Co-authored-by: default avatarSabine Carpenter <scarpenter@gitlab.com>
parents 2e239c40 c3f3a904
No related branches found
No related tags found
1 merge request!137440Correct Example SCIM API call
Pipeline #1081588179 passed
......@@ -290,7 +290,7 @@ If a subset of users are receiving a `404` after signing in to the IdP, first ve
Example request:
```plaintext
curl --request PATCH "https://gitlab.example.com/api/scim/v2/groups/test_group/Users/f0b1d561c-21ff-4092-beab-8154b17f82f2" --header "Authorization: Bearer <SCIM_TOKEN>" --data '{ "Operations": [{"op":"Replace","path":"active","value":"true"}] }'
curl --request PATCH "https://gitlab.example.com/api/scim/v2/groups/test_group/Users/f0b1d561c-21ff-4092-beab-8154b17f82f2" --header "Authorization: Bearer <SCIM_TOKEN>" --header "Content-Type: application/scim+json" --data '{ "Operations": [{"op":"Replace","path":"active","value":"true"}] }'
```
### 500 error after login **(FREE SELF)**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment