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": "labore voluptate eiusmod ea",
"iapGroups": [
"nisi Ut dolore enim",
"mollit fugiat labore in in",
"minim dolor incididunt elit",
"aliqua do sit aliquip",
"culpa ad id velit adipisicing"
],
"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": "OK",
"message": "A sample success message",
"data": {
"externalGroup": "tempor",
"iapGroups": [
"ullamco anim in quis",
"tempor",
"incididunt",
"in nisi irure officia",
"deserunt in qui"
],
"provenance": "Okta"
}
}