Hello
We are currently trying to use SCIM API for user management.
From Tulip side, the only document is Configure user provisioning with SAML SSO and not provide open API specification of how Tulip implement SCIM API.
Especially, I try the “create” with following call but I get always a bad request 400 ““generic.invalidParams””.
Could give me an example of this api call?
curl --request POST
–url https://xxxxx/scim/v2/Users
–header ‘Authorization: Bearer apikey.xxxx’
–header ‘Content-Type: application/scim+json’
–data ’ {
“schemas”:[“urn:ietf:params:scim:schemas:core:2.0:User”],
“userName":"nicotest@test.com”,
“name”:{
“familyName”:“”,
“givenName”:“test nicolas”
},
“emails”: [
{
“primary”: true,
“value”: “nicotest@test.com”,
“type”: “work”
}
]
}’