Summary
Create a group mapping.
Description
Create a group mapping
Route
POST /group-mappings
Roles
admin
Parameters
DetailsExampleSchema
Name |
Type |
Required |
Description |
groupMapping |
object |
yes |
The group mapping to create. |
Copied to Clipboard
{
"groupMapping": {
"externalGroup": "officia cupidatat",
"iapGroups": [
"laboris in velit Duis ea",
"do ea ullamco Ut id",
"in nisi",
"ipsum dolore cupidatat anim in",
"laboris laborum aute commodo et"
],
"provenance": "Okta"
}
}
Copied to Clipboard
{
"type": "object",
"properties": {
"groupMapping": {
"title": "groupMapping",
"$ref": "mapping-schema"
}
},
"required": [
"groupMapping"
],
"additionalProperties": false
}
Return
DetailsExampleSchema
Name |
Type |
Description |
result |
object |
Result of group mapping creation process. |
Copied to Clipboard
{
"status": "Created",
"message": "A sample success message",
"data": {
"externalGroup": "exercitation",
"iapGroups": [
"dolor qui aliqua cupidatat",
"ut",
"sed do dolore irure aute",
"reprehenderit"
],
"provenance": "Okta"
}
}