groups
, the user is provisioned for the enterprise, but no organization invitation emails will be sent.curl --location --request POST 'https://api.github.com/scim/v2/enterprises//Users' \
--header 'Content-Type: application/json' \
--data-raw '{
"emails": [
{
"primary": true,
"type": "work",
"value": "mona.octocat@okta.example.com"
}
],
"groups": [
{
"value": "468dd3fa-a1d6-11ea-9031-15a1f0d7811d"
}
],
"name": {
"familyName": "Octocat",
"givenName": "Mona"
},
"schemas": [
"urn:ietf:params:scim:schemas:core:2.0:User"
],
"userName": "mona.octocat@okta.example.com"
}'
{
"active": true,
"emails": [
{
"primary": true,
"type": "string",
"value": "string"
}
],
"externalId": "string",
"groups": [
{
"value": "string"
}
],
"id": "string",
"meta": {
"created": "string",
"lastModified": "string",
"location": "string",
"resourceType": "string"
},
"name": {
"familyName": "string",
"givenName": "string"
},
"schemas": [
"string"
],
"userName": "string"
}