Account event types v2

Core Resources
Accounts
Account event types

This is a list of all public thin events we currently send for updates to Account, which are continually evolving and expanding. The payload of thin events is unversioned. During processing, you must fetch the versioned event from the API or fetch the resource’s current state.

Event types

Type
Filter events by type

v2.core.account.closed

This event occurs when an account is closed.

Attributes

  • idstring

    Unique identifier for the event.

  • objectstring, value is "v2.core.event"

    String representing the object’s type. Objects of the same type share the same value of the object field.

  • contextnullable string

    Authentication context needed to fetch the event or related object.

  • createdtimestamp

    Time at which the object was created.

  • livemodeboolean

    Has the value true if the object exists in live mode or the value false if the object exists in test mode.

  • reasonnullable object

    Reason for the event.

    • reason.requestnullable object

      Information on the API request that instigated the event.

      • reason.request.idstring

        ID of the API request that caused the event.

      • reason.request.idempotency_keystring

        The idempotency key transmitted during the request.

    • reason.typeenum

      Event reason type.

      Possible enum values
      request

      The event was published as the result of an API request.

  • related_objectnullable object

    Object containing the reference to API resource relevant to the event.

    • related_object.idstring

      Unique identifier for the object relevant to the event.

    • related_object.typestring

      Object tag of the resource relevant to the event.

    • related_object.urlstring

      URL to retrieve the resource.

  • typestring, value is "v2.core.account.closed"

    The type of the event.

Fetched attributes

  • dataobject

    Additional data about the event.

Event handler
# Select a client library to see examples of
# parsing and retrieving event details.

v2.core.account.created

Occurs when an Account is created.

Attributes

  • idstring

    Unique identifier for the event.

  • objectstring, value is "v2.core.event"

    String representing the object’s type. Objects of the same type share the same value of the object field.

  • contextnullable string

    Authentication context needed to fetch the event or related object.

  • createdtimestamp

    Time at which the object was created.

  • livemodeboolean

    Has the value true if the object exists in live mode or the value false if the object exists in test mode.

  • reasonnullable object

    Reason for the event.

    • reason.requestnullable object

      Information on the API request that instigated the event.

      • reason.request.idstring

        ID of the API request that caused the event.

      • reason.request.idempotency_keystring

        The idempotency key transmitted during the request.

    • reason.typeenum

      Event reason type.

      Possible enum values
      request

      The event was published as the result of an API request.

  • related_objectnullable object

    Object containing the reference to API resource relevant to the event.

    • related_object.idstring

      Unique identifier for the object relevant to the event.

    • related_object.typestring

      Object tag of the resource relevant to the event.

    • related_object.urlstring

      URL to retrieve the resource.

  • typestring, value is "v2.core.account.created"

    The type of the event.

Fetched attributes

  • dataobject

    Additional data about the event.

Event handler
# Select a client library to see examples of
# parsing and retrieving event details.

v2.core.account.updated

Occurs when an Account is updated.

Attributes

  • idstring

    Unique identifier for the event.

  • objectstring, value is "v2.core.event"

    String representing the object’s type. Objects of the same type share the same value of the object field.

  • contextnullable string

    Authentication context needed to fetch the event or related object.

  • createdtimestamp

    Time at which the object was created.

  • livemodeboolean

    Has the value true if the object exists in live mode or the value false if the object exists in test mode.

  • reasonnullable object

    Reason for the event.

    • reason.requestnullable object

      Information on the API request that instigated the event.

      • reason.request.idstring

        ID of the API request that caused the event.

      • reason.request.idempotency_keystring

        The idempotency key transmitted during the request.

    • reason.typeenum

      Event reason type.

      Possible enum values
      request

      The event was published as the result of an API request.

  • related_objectnullable object

    Object containing the reference to API resource relevant to the event.

    • related_object.idstring

      Unique identifier for the object relevant to the event.

    • related_object.typestring

      Object tag of the resource relevant to the event.

    • related_object.urlstring

      URL to retrieve the resource.

  • typestring, value is "v2.core.account.updated"

    The type of the event.

Fetched attributes

  • dataobject

    Additional data about the event.

Event handler
# Select a client library to see examples of
# parsing and retrieving event details.

v2.core.account[configuration.customer].capability_status_updated

Occurs when the status of an Account's customer configuration capability is updated.

Attributes

  • idstring

    Unique identifier for the event.

  • objectstring, value is "v2.core.event"

    String representing the object’s type. Objects of the same type share the same value of the object field.

  • contextnullable string

    Authentication context needed to fetch the event or related object.

  • createdtimestamp

    Time at which the object was created.

  • livemodeboolean

    Has the value true if the object exists in live mode or the value false if the object exists in test mode.

  • reasonnullable object

    Reason for the event.

    • reason.requestnullable object

      Information on the API request that instigated the event.

      • reason.request.idstring

        ID of the API request that caused the event.

      • reason.request.idempotency_keystring

        The idempotency key transmitted during the request.

    • reason.typeenum

      Event reason type.

      Possible enum values
      request

      The event was published as the result of an API request.

  • related_objectnullable object

    Object containing the reference to API resource relevant to the event.

    • related_object.idstring

      Unique identifier for the object relevant to the event.

    • related_object.typestring

      Object tag of the resource relevant to the event.

    • related_object.urlstring

      URL to retrieve the resource.

  • typestring, value is "v2.core.account[configuration.customer].capability_status_updated"

    The type of the event.

Fetched attributes

  • dataobject

    Additional data about the event.

    • data.updated_capabilityenum

      The capability which had its status updated.

      Possible enum values
      automatic_indirect_tax

      Refers to the customer.capabilities.card_payments capability.

Event payload
{
"created": "2025-04-28T20:33:01.123Z",
"id": "evt_test_65SSMJhMl1dA8fh6lLW16RXPD96YSQQWRFoysHSB2ueQ9A",
"object": "v2.core.event",
"type": "v2.core.account[configuration.customer].capability_status_updated",
"livemode": false,
"related_object": {
"id": "acct_1RIyMKPt46znscxj",
"type": "v2.core.account",
"url": "/v2/core/accounts/acct_1RIyMKPt46znscxj?include=configuration.customer"
}
}
Event handler
# Select a client library to see examples of
# parsing and retrieving event details.
Fetched payload
{
"created": "2025-04-28T20:33:01.123Z",
"id": "evt_test_65SSMJhMl1dA8fh6lLW16RXPD96YSQQWRFoysHSB2ueQ9A",
"object": "v2.core.event",
"type": "v2.core.account[configuration.customer].capability_status_updated",
"data": {
"updated_capability": "automatic_indirect_tax"
},
"livemode": false,
"reason": null,
"related_object": {
"id": "acct_1RIyMKPt46znscxj",
"type": "v2.core.account",
"url": "/v2/core/accounts/acct_1RIyMKPt46znscxj?include=configuration.customer"
},
"changes": null
}

v2.core.account[configuration.customer].updated

Occurs when an Account's customer configuration is updated.

Attributes

  • idstring

    Unique identifier for the event.

  • objectstring, value is "v2.core.event"

    String representing the object’s type. Objects of the same type share the same value of the object field.

  • contextnullable string

    Authentication context needed to fetch the event or related object.

  • createdtimestamp

    Time at which the object was created.

  • livemodeboolean

    Has the value true if the object exists in live mode or the value false if the object exists in test mode.

  • reasonnullable object

    Reason for the event.

    • reason.requestnullable object

      Information on the API request that instigated the event.

      • reason.request.idstring

        ID of the API request that caused the event.

      • reason.request.idempotency_keystring

        The idempotency key transmitted during the request.

    • reason.typeenum

      Event reason type.

      Possible enum values
      request

      The event was published as the result of an API request.

  • related_objectnullable object

    Object containing the reference to API resource relevant to the event.

    • related_object.idstring

      Unique identifier for the object relevant to the event.

    • related_object.typestring

      Object tag of the resource relevant to the event.

    • related_object.urlstring

      URL to retrieve the resource.

  • typestring, value is "v2.core.account[configuration.customer].updated"

    The type of the event.

Fetched attributes

  • dataobject

    Additional data about the event.

Event payload
{
"created": "2025-04-01T23:03:16.425Z",
"id": "evt_test_65SSMJhhIMgYc9ZsFLW16RXPD96YSQQWRFoysHSB2ueOUy",
"object": "v2.core.event",
"type": "v2.core.account[configuration.customer].updated",
"livemode": false,
"related_object": {
"id": "acct_1RIyMKPt46znscxj",
"type": "v2.core.account",
"url": "/v2/core/accounts/acct_1RIyMKPt46znscxj?include=configuration.customer"
}
}
Event handler
# Select a client library to see examples of
# parsing and retrieving event details.
Fetched payload
{
"created": "2025-04-01T23:03:16.425Z",
"id": "evt_test_65SSMJhhIMgYc9ZsFLW16RXPD96YSQQWRFoysHSB2ueOUy",
"object": "v2.core.event",
"type": "v2.core.account[configuration.customer].updated",
"data": {},
"livemode": false,
"reason": null,
"related_object": {
"id": "acct_1RIyMKPt46znscxj",
"type": "v2.core.account",
"url": "/v2/core/accounts/acct_1RIyMKPt46znscxj?include=configuration.customer"
},
"changes": null
}

v2.core.account[configuration.merchant].capability_status_updated

Occurs when the status of an Account's merchant configuration capability is updated.

Attributes

  • idstring

    Unique identifier for the event.

  • objectstring, value is "v2.core.event"

    String representing the object’s type. Objects of the same type share the same value of the object field.

  • contextnullable string

    Authentication context needed to fetch the event or related object.

  • createdtimestamp

    Time at which the object was created.

  • livemodeboolean

    Has the value true if the object exists in live mode or the value false if the object exists in test mode.

  • reasonnullable object

    Reason for the event.

    • reason.requestnullable object

      Information on the API request that instigated the event.

      • reason.request.idstring

        ID of the API request that caused the event.

      • reason.request.idempotency_keystring

        The idempotency key transmitted during the request.

    • reason.typeenum

      Event reason type.

      Possible enum values
      request

      The event was published as the result of an API request.

  • related_objectnullable object

    Object containing the reference to API resource relevant to the event.

    • related_object.idstring

      Unique identifier for the object relevant to the event.

    • related_object.typestring

      Object tag of the resource relevant to the event.

    • related_object.urlstring

      URL to retrieve the resource.

  • typestring, value is "v2.core.account[configuration.merchant].capability_status_updated"

    The type of the event.

Fetched attributes

  • dataobject

    Additional data about the event.

    • data.updated_capabilityenum

      The capability which had its status updated.

      Possible enum values
      ach_debit_payments

      Refers to the merchant.capabilities.ach_debit_payments capability.

      acss_debit_payments

      Refers to the merchant.capabilities.acss_debit_payments capability.

      affirm_payments

      Refers to the merchant.capabilities.affirm_payments capability.

      afterpay_clearpay_payments

      Refers to the merchant.capabilities.afterpay_clearpay_payments capability.

      alma_payments

      Refers to the merchant.capabilities.alma_payments capability.

      amazon_pay_payments

      Refers to the merchant.capabilities.amazon_pay_payments capability.

      au_becs_debit_payments

      Refers to the merchant.capabilities.au_becs_debit_payments capability.

      bacs_debit_payments

      Refers to the merchant.capabilities.bacs_debit_payments capability.

      bancontact_payments

      Refers to the merchant.capabilities.bancontact_payments capability.

      blik_payments

      Refers to the merchant.capabilities.blik_payments capability.

      Show 35 more
Event payload
{
"created": "2025-04-28T20:34:42.026Z",
"id": "evt_test_65SSMLK1ZTX7OYhyjSr16RXPD96YSQQWRFoysHSB2ueHya",
"object": "v2.core.event",
"type": "v2.core.account[configuration.merchant].capability_status_updated",
"livemode": false,
"related_object": {
"id": "acct_1RIyMKPt46znscxj",
"type": "v2.core.account",
"url": "/v2/core/accounts/acct_1RIyMKPt46znscxj?include=configuration.merchant"
}
}
Event handler
# Select a client library to see examples of
# parsing and retrieving event details.
Fetched payload
{
"created": "2025-04-28T20:34:42.026Z",
"id": "evt_test_65SSMLK1ZTX7OYhyjSr16RXPD96YSQQWRFoysHSB2ueHya",
"object": "v2.core.event",
"type": "v2.core.account[configuration.merchant].capability_status_updated",
"data": {
"updated_capability": "card_payments"
},
"livemode": false,
"reason": null,
"related_object": {
"id": "acct_1RIyMKPt46znscxj",
"type": "v2.core.account",
"url": "/v2/core/accounts/acct_1RIyMKPt46znscxj?include=configuration.merchant"
},
"changes": null
}

v2.core.account[configuration.merchant].updated

Occurs when an Account's merchant configuration is updated.

Attributes

  • idstring

    Unique identifier for the event.

  • objectstring, value is "v2.core.event"

    String representing the object’s type. Objects of the same type share the same value of the object field.

  • contextnullable string

    Authentication context needed to fetch the event or related object.

  • createdtimestamp

    Time at which the object was created.

  • livemodeboolean

    Has the value true if the object exists in live mode or the value false if the object exists in test mode.

  • reasonnullable object

    Reason for the event.

    • reason.requestnullable object

      Information on the API request that instigated the event.

      • reason.request.idstring

        ID of the API request that caused the event.

      • reason.request.idempotency_keystring

        The idempotency key transmitted during the request.

    • reason.typeenum

      Event reason type.

      Possible enum values
      request

      The event was published as the result of an API request.

  • related_objectnullable object

    Object containing the reference to API resource relevant to the event.

    • related_object.idstring

      Unique identifier for the object relevant to the event.

    • related_object.typestring

      Object tag of the resource relevant to the event.

    • related_object.urlstring

      URL to retrieve the resource.

  • typestring, value is "v2.core.account[configuration.merchant].updated"

    The type of the event.

Fetched attributes

  • dataobject

    Additional data about the event.

Event payload
{
"created": "2025-04-01T23:03:16.425Z",
"id": "evt_test_65SSMLJIK4u1GJY5ySr16RXPD96YSQQWRFoysHSB2ueWLg",
"object": "v2.core.event",
"type": "v2.core.account[configuration.merchant].updated",
"livemode": false,
"related_object": {
"id": "acct_1RIyMKPt46znscxj",
"type": "v2.core.account",
"url": "/v2/core/accounts/acct_1RIyMKPt46znscxj?include=configuration.merchant"
}
}
Event handler
# Select a client library to see examples of
# parsing and retrieving event details.
Fetched payload
{
"created": "2025-04-01T23:03:16.425Z",
"id": "evt_test_65SSMLJIK4u1GJY5ySr16RXPD96YSQQWRFoysHSB2ueWLg",
"object": "v2.core.event",
"type": "v2.core.account[configuration.merchant].updated",
"data": {},
"livemode": false,
"reason": null,
"related_object": {
"id": "acct_1RIyMKPt46znscxj",
"type": "v2.core.account",
"url": "/v2/core/accounts/acct_1RIyMKPt46znscxj?include=configuration.merchant"
},
"changes": null
}

v2.core.account[configuration.recipient].capability_status_updated

Occurs when the status of an Account's recipient configuration capability is updated.

Attributes

  • idstring

    Unique identifier for the event.

  • objectstring, value is "v2.core.event"

    String representing the object’s type. Objects of the same type share the same value of the object field.

  • contextnullable string

    Authentication context needed to fetch the event or related object.

  • createdtimestamp

    Time at which the object was created.

  • livemodeboolean

    Has the value true if the object exists in live mode or the value false if the object exists in test mode.

  • reasonnullable object

    Reason for the event.

    • reason.requestnullable object

      Information on the API request that instigated the event.

      • reason.request.idstring

        ID of the API request that caused the event.

      • reason.request.idempotency_keystring

        The idempotency key transmitted during the request.

    • reason.typeenum

      Event reason type.

      Possible enum values
      request

      The event was published as the result of an API request.

  • related_objectnullable object

    Object containing the reference to API resource relevant to the event.

    • related_object.idstring

      Unique identifier for the object relevant to the event.

    • related_object.typestring

      Object tag of the resource relevant to the event.

    • related_object.urlstring

      URL to retrieve the resource.

  • typestring, value is "v2.core.account[configuration.recipient].capability_status_updated"

    The type of the event.

Fetched attributes

  • dataobject

    Additional data about the event.

    • data.updated_capabilityenum

      The capability which had its status updated.

      Possible enum values
      bank_accounts.local

      Refers to the recipient.capabilities.bank_accounts.local capability.

      bank_accounts.wire

      Refers to the recipient.capabilities.bank_accounts.wire capability.

      cards

      Refers to the recipient.capabilities.cards capability.

      stripe.transfers

      DEPRECATED: use RECIPIENT_CONFIG__STRIPE_TRANSFERS_CAPABILITY instead – Refers to the recipient.capabilities.stripe.transfers capability.

      stripe_balance.payouts

      Refers to the recipient.capabilities.stripe_balance.payouts capability.

      stripe_balance.stripe_transfers

      Refers to the recipient.capabilities.stripe_balance.stripe_transfers capability.

Event payload
{
"created": "2025-04-01T23:03:17.678Z",
"id": "evt_test_65SIbnJV74bY3Gprd8316RXPD96YSQQWRFoysHSB2ueM52",
"object": "v2.core.event",
"type": "v2.core.account[configuration.recipient].capability_status_updated",
"livemode": false,
"related_object": {
"id": "acct_1RIyMKPt46znscxj",
"type": "v2.core.account",
"url": "/v2/core/accounts/acct_1RIyMKPt46znscxj?include=configuration.recipient"
}
}
Event handler
# Select a client library to see examples of
# parsing and retrieving event details.
Fetched payload
{
"created": "2025-04-01T23:03:17.678Z",
"id": "evt_test_65SIbnJV74bY3Gprd8316RXPD96YSQQWRFoysHSB2ueM52",
"object": "v2.core.event",
"type": "v2.core.account[configuration.recipient].capability_status_updated",
"data": {
"updated_capability": "stripe_balance.stripe_transfers"
},
"livemode": false,
"reason": null,
"related_object": {
"id": "acct_1RIyMKPt46znscxj",
"type": "v2.core.account",
"url": "/v2/core/accounts/acct_1RIyMKPt46znscxj?include=configuration.recipient"
},
"changes": null
}

v2.core.account[configuration.recipient].updated

Occurs when a Recipient's configuration is updated.

Attributes

  • idstring

    Unique identifier for the event.

  • objectstring, value is "v2.core.event"

    String representing the object’s type. Objects of the same type share the same value of the object field.

  • contextnullable string

    Authentication context needed to fetch the event or related object.

  • createdtimestamp

    Time at which the object was created.

  • livemodeboolean

    Has the value true if the object exists in live mode or the value false if the object exists in test mode.

  • reasonnullable object

    Reason for the event.

    • reason.requestnullable object

      Information on the API request that instigated the event.

      • reason.request.idstring

        ID of the API request that caused the event.

      • reason.request.idempotency_keystring

        The idempotency key transmitted during the request.

    • reason.typeenum

      Event reason type.

      Possible enum values
      request

      The event was published as the result of an API request.

  • related_objectnullable object

    Object containing the reference to API resource relevant to the event.

    • related_object.idstring

      Unique identifier for the object relevant to the event.

    • related_object.typestring

      Object tag of the resource relevant to the event.

    • related_object.urlstring

      URL to retrieve the resource.

  • typestring, value is "v2.core.account[configuration.recipient].updated"

    The type of the event.

Fetched attributes

  • dataobject

    Additional data about the event.

Event payload
{
"created": "2025-04-01T23:03:16.425Z",
"id": "evt_test_65SIbnIZpPGoUur818316RXPD96YSQQWRFoysHSB2ue7Qm",
"object": "v2.core.event",
"type": "v2.core.account[configuration.recipient].updated",
"livemode": false,
"related_object": {
"id": "acct_1RIyMKPt46znscxj",
"type": "v2.core.account",
"url": "/v2/core/accounts/acct_1RIyMKPt46znscxj?include=configuration.recipient"
}
}
Event handler
# Select a client library to see examples of
# parsing and retrieving event details.
Fetched payload
{
"created": "2025-04-01T23:03:16.425Z",
"id": "evt_test_65SIbnIZpPGoUur818316RXPD96YSQQWRFoysHSB2ue7Qm",
"object": "v2.core.event",
"type": "v2.core.account[configuration.recipient].updated",
"data": {},
"livemode": false,
"reason": null,
"related_object": {
"id": "acct_1RIyMKPt46znscxj",
"type": "v2.core.account",
"url": "/v2/core/accounts/acct_1RIyMKPt46znscxj?include=configuration.recipient"
},
"changes": null
}

v2.core.account[defaults].updated

This event occurs when account defaults are created or updated.

Attributes

  • idstring

    Unique identifier for the event.

  • objectstring, value is "v2.core.event"

    String representing the object’s type. Objects of the same type share the same value of the object field.

  • contextnullable string

    Authentication context needed to fetch the event or related object.

  • createdtimestamp

    Time at which the object was created.

  • livemodeboolean

    Has the value true if the object exists in live mode or the value false if the object exists in test mode.

  • reasonnullable object

    Reason for the event.

    • reason.requestnullable object

      Information on the API request that instigated the event.

      • reason.request.idstring

        ID of the API request that caused the event.

      • reason.request.idempotency_keystring

        The idempotency key transmitted during the request.

    • reason.typeenum

      Event reason type.

      Possible enum values
      request

      The event was published as the result of an API request.

  • related_objectnullable object

    Object containing the reference to API resource relevant to the event.

    • related_object.idstring

      Unique identifier for the object relevant to the event.

    • related_object.typestring

      Object tag of the resource relevant to the event.

    • related_object.urlstring

      URL to retrieve the resource.

  • typestring, value is "v2.core.account[defaults].updated"

    The type of the event.

Fetched attributes

  • dataobject

    Additional data about the event.

Event handler
# Select a client library to see examples of
# parsing and retrieving event details.

v2.core.account[identity].updated

Occurs when an Identity is updated.

Attributes

  • idstring

    Unique identifier for the event.

  • objectstring, value is "v2.core.event"

    String representing the object’s type. Objects of the same type share the same value of the object field.

  • contextnullable string

    Authentication context needed to fetch the event or related object.

  • createdtimestamp

    Time at which the object was created.

  • livemodeboolean

    Has the value true if the object exists in live mode or the value false if the object exists in test mode.

  • reasonnullable object

    Reason for the event.

    • reason.requestnullable object

      Information on the API request that instigated the event.

      • reason.request.idstring

        ID of the API request that caused the event.

      • reason.request.idempotency_keystring

        The idempotency key transmitted during the request.

    • reason.typeenum

      Event reason type.

      Possible enum values
      request

      The event was published as the result of an API request.

  • related_objectnullable object

    Object containing the reference to API resource relevant to the event.

    • related_object.idstring

      Unique identifier for the object relevant to the event.

    • related_object.typestring

      Object tag of the resource relevant to the event.

    • related_object.urlstring

      URL to retrieve the resource.

  • typestring, value is "v2.core.account[identity].updated"

    The type of the event.

Fetched attributes

  • dataobject

    Additional data about the event.

Event payload
{
"created": "2025-04-28T20:48:08.710Z",
"id": "evt_test_65SSMYK8uw9bZdmkiyd16RXPD96YSQQWRFoysHSB2ueSn2",
"object": "v2.core.event",
"type": "v2.core.account[identity].updated",
"livemode": false,
"related_object": {
"id": "acct_1RIyMKPt46znscxj",
"type": "v2.core.account",
"url": "/v2/core/accounts/acct_1RIyMKPt46znscxj?include=identity"
}
}
Event handler
# Select a client library to see examples of
# parsing and retrieving event details.
Fetched payload
{
"created": "2025-04-28T20:48:08.710Z",
"id": "evt_test_65SSMYK8uw9bZdmkiyd16RXPD96YSQQWRFoysHSB2ueSn2",
"object": "v2.core.event",
"type": "v2.core.account[identity].updated",
"data": {},
"livemode": false,
"reason": null,
"related_object": {
"id": "acct_1RIyMKPt46znscxj",
"type": "v2.core.account",
"url": "/v2/core/accounts/acct_1RIyMKPt46znscxj?include=identity"
},
"changes": null
}

v2.core.account[requirements].updated

Occurs when an Account's requirements are updated.

Attributes

  • idstring

    Unique identifier for the event.

  • objectstring, value is "v2.core.event"

    String representing the object’s type. Objects of the same type share the same value of the object field.

  • contextnullable string

    Authentication context needed to fetch the event or related object.

  • createdtimestamp

    Time at which the object was created.

  • livemodeboolean

    Has the value true if the object exists in live mode or the value false if the object exists in test mode.

  • reasonnullable object

    Reason for the event.

    • reason.requestnullable object

      Information on the API request that instigated the event.

      • reason.request.idstring

        ID of the API request that caused the event.

      • reason.request.idempotency_keystring

        The idempotency key transmitted during the request.

    • reason.typeenum

      Event reason type.

      Possible enum values
      request

      The event was published as the result of an API request.

  • related_objectnullable object

    Object containing the reference to API resource relevant to the event.

    • related_object.idstring

      Unique identifier for the object relevant to the event.

    • related_object.typestring

      Object tag of the resource relevant to the event.

    • related_object.urlstring

      URL to retrieve the resource.

  • typestring, value is "v2.core.account[requirements].updated"

    The type of the event.

Fetched attributes

  • dataobject

    Additional data about the event.

Event payload
{
"created": "2025-04-01T23:03:18.235Z",
"id": "evt_test_65SIbnKv7aZvHPCht8316RXPD96YSQQWRFoysHSB2ue4iG",
"object": "v2.core.event",
"type": "v2.core.account[requirements].updated",
"livemode": false,
"related_object": {
"id": "acct_1RIyMKPt46znscxj",
"type": "v2.core.account",
"url": "/v2/core/accounts/acct_1RIyMKPt46znscxj?include=requirements"
}
}
Event handler
# Select a client library to see examples of
# parsing and retrieving event details.
Fetched payload
{
"created": "2025-04-01T23:03:18.235Z",
"id": "evt_test_65SIbnKv7aZvHPCht8316RXPD96YSQQWRFoysHSB2ue4iG",
"object": "v2.core.event",
"type": "v2.core.account[requirements].updated",
"data": {},
"livemode": false,
"reason": null,
"related_object": {
"id": "acct_1RIyMKPt46znscxj",
"type": "v2.core.account",
"url": "/v2/core/accounts/acct_1RIyMKPt46znscxj?include=requirements"
},
"changes": null
}