# User

## Added

`com.twilio.conversations.user.added`

User Added events are compatible with Webhook and Kinesis sinks. To learn more, you can get started with the [Webhook](/docs/events/webhook-quickstart) or [Kinesis](/docs/events/eventstreams-quickstart) quickstarts and refer to the [product documentation](/docs/conversations/api/user-resource).

**Examples**

```json
{
  "specversion" : "1.0",
  "type" : "com.twilio.conversations.user.added",
  "source" : "AB00000000000000000000000001",
  "id" : "NO00000000000000000000000001",
  "dataschema" : "https://events-schemas.twilio.com/Conversations.UserAdded/2",
  "datacontenttype" : "2025-10-08T07:17:02.363Z",
  "data" : {
    "AccountSid" : "ACe95cfd541a925a3337fec19a0200009",
    "UserSid" : "USe95cfd541a925a3337fec19a0200009",
    "Identity" : "FX0000000000000000000000000000001",
    "FriendlyName" : "My name",
    "RoleSid" : "RLe95cfd541a925a3337fec19a0200009",
    "DateCreated" : "2025-01-01T00:00:00.000Z"
  }
}
```

**Versions**

#### v2 (latest)

> \[!NOTE]
>
> v2 only contains updates to the schema metadata. In other words, there are no new fields between v1 and v2.

* `string` **AccountSid**. Account SID of the event owner. For example: ACe95cfd541a925a3337fec19a0200009.
* `string` **UserSid**. SID of the user. For example: USe95cfd541a925a3337fec19a0200009.
* `string` **Identity**. Identity of the user.
* `string` **FriendlyName**. The string that the user assigned to describe the resource.
* `object` **Attributes**. User metadata as set by the customer.
* `string` **RoleSid**. SID of the user's role added to the conversation. For example: RLe95cfd541a925a3337fec19a0200009.
* `string` **DateCreated**. Creation date of the User.

The full specification for version 2 is also available as a [JSON schema](https://events-schemas.twilio.com/Conversations.UserAdded/2).

#### v1

* `string` **AccountSid**. Account SID of the event owner. For example: ACe95cfd541a925a3337fec19a0200009.
* `string` **UserSid**. SID of the user. For example: USe95cfd541a925a3337fec19a0200009.
* `string` **Identity**. Identity of the user.
* `string` **FriendlyName**. The string that the user assigned to describe the resource.
* `object` **Attributes**. User metadata as set by the customer.
* `string` **RoleSid**. SID of the user's role added to the conversation. For example: RLe95cfd541a925a3337fec19a0200009.
* `string` **DateCreated**. Creation date of the User.

The full specification for version 1 is also available as a [JSON schema](https://events-schemas.twilio.com/Conversations.UserAdded/1).

## Updated

`com.twilio.conversations.user.updated`

User Updated events are compatible with Webhook and Kinesis sinks. To learn more, you can get started with the [Webhook](/docs/events/webhook-quickstart) or [Kinesis](/docs/events/eventstreams-quickstart) quickstarts and refer to the [product documentation](/docs/conversations/api/user-resource).

**Examples**

```json
{
  "specversion" : "1.0",
  "type" : "com.twilio.conversations.user.updated",
  "source" : "AB00000000000000000000000001",
  "id" : "NO00000000000000000000000001",
  "dataschema" : "https://events-schemas.twilio.com/Conversations.UserUpdated/2",
  "datacontenttype" : "2025-10-08T07:17:02.363Z",
  "data" : {
    "AccountSid" : "ACe95cfd541a925a3337fec19a0200009",
    "UserSid" : "USe95cfd541a925a3337fec19a0200009",
    "Identity" : "FX0000000000000000000000000000001",
    "FriendlyName" : "My name",
    "RoleSid" : "RLe95cfd541a925a3337fec19a0200009",
    "DateCreated" : "2025-01-01T00:00:00.000Z",
    "DateUpdated" : "2025-01-01T00:00:01.000Z",
    "IsOnline" : true,
    "IsNotifiable" : true
  }
}
```

**Versions**

#### v2 (latest)

> \[!NOTE]
>
> v2 only contains updates to the schema metadata. In other words, there are no new fields between v1 and v2.

* `string` **AccountSid**. Account SID of the event owner. For example: ACe95cfd541a925a3337fec19a0200009.
* `string` **UserSid**. SID of the User. For example: USe95cfd541a925a3337fec19a0200009.
* `string` **Identity**. Identity of the User.
* `string` **FriendlyName**. The string that the User assigned to describe the resource.
* `object` **Attributes**. User metadata as set by the customer.
* `string` **RoleSid**. SID of the User's role added to the conversation. For example: RLe95cfd541a925a3337fec19a0200009.
* `string` **DateCreated**. Creation date of the User.
* `string` **DateUpdated**. Update date of the User.
* `boolean` **IsOnline**. Whether the User is actively connected to this Conversations Service and online.
* `boolean` **IsNotifiable**. Whether the User has a potentially valid Push Notification registration (APN or GCM) for this Conversations Service.

The full specification for version 2 is also available as a [JSON schema](https://events-schemas.twilio.com/Conversations.UserUpdated/2).

#### v1

* `string` **AccountSid**. Account SID of the event owner. For example: ACe95cfd541a925a3337fec19a0200009.
* `string` **UserSid**. SID of the User. For example: USe95cfd541a925a3337fec19a0200009.
* `string` **Identity**. Identity of the User.
* `string` **FriendlyName**. The string that the User assigned to describe the resource.
* `object` **Attributes**. User metadata as set by the customer.
* `string` **RoleSid**. SID of the User's role added to the conversation. For example: RLe95cfd541a925a3337fec19a0200009.
* `string` **DateCreated**. Creation date of the User.
* `string` **DateUpdated**. Update date of the User.
* `boolean` **IsOnline**. Whether the User is actively connected to this Conversations Service and online.
* `boolean` **IsNotifiable**. Whether the User has a potentially valid Push Notification registration (APN or GCM) for this Conversations Service.

The full specification for version 1 is also available as a [JSON schema](https://events-schemas.twilio.com/Conversations.UserUpdated/1).
