v5

latestOpenAPI 3.1.02026-07-31151195455.5 KB
group-bindings

Creates a group binding.

post/group-bindings

Request body

source_group_idstring uuid required

The ID of the source group.

Example request

{
  "source_group_id": "f454d283-ca87-4a8a-bdbb-df212eca5353",
  "groups": [
    {
      "group_id": "f454d283-ca87-4a8a-bdbb-df212eca5353"
    },
    {
      "group_id": "99d0b81d-14be-4cf6-bd27-348b4af1d11b"
    }
  ]
}

Response

The group binding just created.

group_binding_idstring uuid required

The ID of the group binding.

created_by_idstring uuid required

The ID of the user that created the group binding.

created_atstring date-time required

The date the group binding was created.

source_group_idstring uuid required

The ID of the source group.

Example response

{
  "group_binding_id": "f454d283-ca87-4a8a-bdbb-df212eca5353",
  "created_by_id": "99d0b81d-14be-4cf6-bd27-348b4af1d11b",
  "created_at": "2022-01-23T04:56:07Z",
  "source_group_id": "f454d283-ca87-4a8a-bdbb-df212eca5353",
  "groups": [
    {
      "group_id": "f454d283-ca87-4a8a-bdbb-df212eca5353",
      "group_type": "OKTA_GROUP"
    },
    {
      "group_id": "99d0b81d-14be-4cf6-bd27-348b4af1d11b",
      "group_type": "AWS_SSO_GROUP"
    }
  ]
}