# Group Create Event

Learn about the Group Create event.

> For the index of this section of the site, see [llms.txt](https://fusionauth.io/docs/llms.txt)

## Group Create

> **VERSION:**
> 
> This event has been available since 1.38.0

This event is generated when a single group is created. The JSON includes the Group that was created.

Event type

group.create

### Event Scope

This is a tenant-scoped event.

It can be sent to all tenants or to one or more specified tenants. However, those tenants will not be sent events for other tenants, but only events related to themselves.

### Transaction Compatibility

This event is transactional. The final state of the operation which caused the webhook is not persisted to FusionAuth until after the webhook finishes; [learn more](https://fusionauth.io/docs/extend/events-and-webhooks/writing-a-webhook.md#calling-fusionauth-apis-in-webhooks)

### Event Body

`event.createInstant`

*   Long

The [instant](https://fusionauth.io/docs/reference/data-types.md#instants) that the event was generated.

`event.group`

*   Object

The group that has been created. See the [Groups API](https://fusionauth.io/docs/apis/groups.md) for property definitions and example JSON.

`event.id`

*   UUID

The unique Id of the event.

`event.info.data`

*   Object

An object that can hold any information about the event that should be persisted.

`event.info.deviceDescription`

*   String

The description of the device associated with the event.

`event.info.deviceName`

*   String

The device name associated with the event.

`event.info.deviceType`

*   String

The type of device associated with the event.

`event.info.ipAddress`

*   String

The source IP address of the event.

`event.info.location.city`

*   String

The city where the event originated.

**Note:** To use event location data, you'll need an Enterprise plan.

`event.info.location.country`

*   String

The country where the event originated.

**Note:** To use event location data, you'll need an Enterprise plan.

`event.info.location.latitude`

*   Double

The latitude where the event originated.

**Note:** To use event location data, you'll need an Enterprise plan.

`event.info.location.longitude`

*   Double

The longitude where the event originated.

**Note:** To use event location data, you'll need an Enterprise plan.

`event.info.location.region`

*   String

The geographic location where the event originated.

**Note:** To use event location data, you'll need an Enterprise plan.

`event.info.location.zipcode`

*   String

The zip code where the event originated.

**Note:** To use event location data, you'll need an Enterprise plan.

`event.info.os`

*   String

The operating system associated with the event.

`event.info.userAgent`

*   String

The user agent associated with the event.

`event.linkedObjectId`

*   UUID
*   Available since 1.53.0

The Id of the group created by this event.

`event.tenantId`

*   UUID

The unique tenant identifier. This value may not be returned if not applicable.

`event.type`

*   String

The event type, this value will always be `group.create`.

*Example Event JSON*

```json
{
  "event": {
    "createInstant": 1660777395126,
    "group": {
      "data": {},
      "id": "89450cd0-24a9-401d-a6ad-4116de45b8e2",
      "insertInstant": 1660777395126,
      "lastUpdateInstant": 1660777395156,
      "name": "Employees",
      "roles": {},
      "tenantId": "f84cfebc-d68f-4b8c-9014-f9afa6ccc3e1"
    },
    "id": "2ed2a35c-eff5-41b4-822d-ba1b85d814c4",
    "info": {
      "ipAddress": "127.0.0.1",
      "userAgent": "Restify (https://github.com/inversoft/restify)"
    },
    "tenantId": "f84cfebc-d68f-4b8c-9014-f9afa6ccc3e1",
    "type": "group.create"
  }
}
```
---

## Other pages in Group

> For the full index of this section, see [Extend](https://fusionauth.io/docs/llms-extend.txt).

- [Group Create Complete Event](https://fusionauth.io/docs/extend/events-and-webhooks/events/group/group-create-complete.md): Learn about the Group Create Complete event.
- [Group Delete Complete Event](https://fusionauth.io/docs/extend/events-and-webhooks/events/group/group-delete-complete.md): Learn about the Group Delete Complete event.
- [Group Delete Event](https://fusionauth.io/docs/extend/events-and-webhooks/events/group/group-delete.md): Learn about the Group Delete event.
- [Group Member Add Complete Event](https://fusionauth.io/docs/extend/events-and-webhooks/events/group/group-member-add-complete.md): Learn about the Group Member Add Complete event.
- [Group Member Add Event](https://fusionauth.io/docs/extend/events-and-webhooks/events/group/group-member-add.md): Learn about the Group Member Add event.
- [Group Member Remove Complete Event](https://fusionauth.io/docs/extend/events-and-webhooks/events/group/group-member-remove-complete.md): Learn about the Group Member Remove Complete.
- [Group Member Remove Event](https://fusionauth.io/docs/extend/events-and-webhooks/events/group/group-member-remove.md): Learn about the Group Member Remove event.
- [Group Member Update Complete Event](https://fusionauth.io/docs/extend/events-and-webhooks/events/group/group-member-update-complete.md): Learn about the Group Member Update Complete event.
- [Group Member Update Event](https://fusionauth.io/docs/extend/events-and-webhooks/events/group/group-member-update.md): Learn about the Group Member Update event.
- [Group Update Complete Event](https://fusionauth.io/docs/extend/events-and-webhooks/events/group/group-update-complete.md): Learn about the Group Update Complete event.
- [Group Update Event](https://fusionauth.io/docs/extend/events-and-webhooks/events/group/group-update.md): Learn about the Group Update event.
