# Agreement event types This is a list of all public [thin events](https://docs.stripe.com/event-destinations.md#thin-events) we currently send for updates to Agreement, 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. ## API event types ### `v2.orchestrated_commerce.agreement.confirmed` Occurs when an Agreement is confirmed by one party. Related object: [Agreement](https://docs.stripe.com/api/v2/orchestrated-commerce/agreements/object.md) ## Attributes - `id` (string) Unique identifier for the event. - `object` (string, value is "v2.core.event") String representing the object’s type. Objects of the same type share the same value of the object field. - `context` (string, nullable) Authentication context needed to fetch the event or related object. - `created` (timestamp) Time at which the object was created. - `livemode` (boolean) Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode. - `related_object` (object) Object containing the reference to API resource relevant to the event. - `related_object.id` (string) Unique identifier for the object relevant to the event. - `related_object.type` (string, value is "v2.orchestrated_commerce.agreement") Object tag of the resource relevant to the event. - `related_object.url` (string) URL to retrieve the resource. - `type` (string, value is "v2.orchestrated_commerce.agreement.confirmed") The type of the event. ## Fetched attributes - `changes` (object) Changes that the event makes to properties in the related object. See the [Agreement](https://docs.stripe.com/api/v2/orchestrated-commerce/agreements/object.md) object for the structure of `before` and `after`. - `changes.after` (object) Updated values of properties that the event changed. This is `null` for deletion events. - `changes.before` (object) Values of properties before the event changes. This is `null` for creation events. - `data` (object) Additional data about the event. - `data.orchestrator_confirmed_at` (timestamp) The time at which the orchestrator confirmed the agreement. - `data.orchestrator_details` (object) Details about the orchestrator. - `data.orchestrator_details.name` (string) The name of the orchestrator. This can be the name of the agent or the name of the business. - `data.orchestrator_details.network_business_profile` (string) The Network ID of the orchestrator. - `data.seller_confirmed_at` (timestamp) The time at which the seller confirmed the agreement. - `data.seller_details` (object) Details about the seller. - `data.seller_details.network_business_profile` (string) The Network ID of the seller. - `reason` (object, nullable) Reason for the event. - `reason.request` (object, nullable) Information on the API request that instigated the event. - `reason.request.id` (string) ID of the API request that caused the event. - `reason.request.idempotency_key` (string) The idempotency key transmitted during the request. - `reason.type` (enum) Event reason type. Possible enum values: - `request` The event was published as the result of an API request. ### Event payload ```json { "created": "2026-04-06T10:05:00.000Z", "id": "evt_test_65RCjj4EqW1sabcjs2Z16RCMoNQdSQkOWvfL6L5uU2K40v", "livemode": false, "object": "v2.core.event", "related_object": { "id": "orca_test_1gkgAw3x8N9UarRebDtOBtdk", "type": "v2.orchestrated_commerce.agreement", "url": "/v2/orchestrated_commerce/agreements/orca_test_1gkgAw3x8N9UarRebDtOBtdk" }, "type": "v2.orchestrated_commerce.agreement.confirmed" } ``` ### Event handler ```curl # Select a client library to see examples of # parsing and retrieving event details. ``` ### Fetched payload ```json { "created": "2026-04-06T10:05:00.000Z", "id": "evt_test_65RCjj4EqW1sabcjs2Z16RCMoNQdSQkOWvfL6L5uU2K40v", "livemode": false, "object": "v2.core.event", "related_object": { "id": "orca_test_1gkgAw3x8N9UarRebDtOBtdk", "type": "v2.orchestrated_commerce.agreement", "url": "/v2/orchestrated_commerce/agreements/orca_test_1gkgAw3x8N9UarRebDtOBtdk" }, "type": "v2.orchestrated_commerce.agreement.confirmed", "changes": {}, "data": { "orchestrator_confirmed_at": "2026-04-06T10:05:00.000Z", "orchestrator_details": { "name": "Test Agent", "network_business_profile": "profile_test_61U92KWAstyE3VYhXA6U91t01FSQ3ByrZzKJOCR0y5ey" }, "seller_confirmed_at": "2026-04-06T10:00:00.000Z", "seller_details": { "network_business_profile": "profile_test_61UQtAVw2yEA80y4mA6UQtAVBKSQt4084jw8nwJXUUdk" } } } ``` ### `v2.orchestrated_commerce.agreement.created` Occurs when an Agreement is created. Related object: [Agreement](https://docs.stripe.com/api/v2/orchestrated-commerce/agreements/object.md) ## Attributes - `id` (string) Unique identifier for the event. - `object` (string, value is "v2.core.event") String representing the object’s type. Objects of the same type share the same value of the object field. - `context` (string, nullable) Authentication context needed to fetch the event or related object. - `created` (timestamp) Time at which the object was created. - `livemode` (boolean) Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode. - `related_object` (object) Object containing the reference to API resource relevant to the event. - `related_object.id` (string) Unique identifier for the object relevant to the event. - `related_object.type` (string, value is "v2.orchestrated_commerce.agreement") Object tag of the resource relevant to the event. - `related_object.url` (string) URL to retrieve the resource. - `type` (string, value is "v2.orchestrated_commerce.agreement.created") The type of the event. ## Fetched attributes - `changes` (object) Changes that the event makes to properties in the related object. See the [Agreement](https://docs.stripe.com/api/v2/orchestrated-commerce/agreements/object.md) object for the structure of `before` and `after`. - `changes.after` (object) Updated values of properties that the event changed. This is `null` for deletion events. - `changes.before` (object, nullable) Values of properties before the event changes. This is `null` for creation events. - `data` (object) Additional data about the event. - `data.created` (timestamp) The time at which the agreement was created. - `data.initiated_by` (enum) The party that initiated the agreement. Possible enum values: - `orchestrator` The orchestrator/agent. - `seller` The seller/merchant. - `data.orchestrator_details` (object) Details about the orchestrator. - `data.orchestrator_details.name` (string) The name of the orchestrator. This can be the name of the agent or the name of the business. - `data.orchestrator_details.network_business_profile` (string) The Network ID of the orchestrator. - `data.seller_details` (object) Details about the seller. - `data.seller_details.network_business_profile` (string) The Network ID of the seller. - `reason` (object, nullable) Reason for the event. - `reason.request` (object, nullable) Information on the API request that instigated the event. - `reason.request.id` (string) ID of the API request that caused the event. - `reason.request.idempotency_key` (string) The idempotency key transmitted during the request. - `reason.type` (enum) Event reason type. Possible enum values: - `request` The event was published as the result of an API request. ### Event payload ```json { "created": "2026-04-06T10:00:00.000Z", "id": "evt_test_65RCjj4EqW1sabcjs2Z16RCMoNQdSQkOWvfL6L5uU2K40u", "livemode": false, "object": "v2.core.event", "related_object": { "id": "orca_test_1gkgAw3x8N9UarRebDtOBtdk", "type": "v2.orchestrated_commerce.agreement", "url": "/v2/orchestrated_commerce/agreements/orca_test_1gkgAw3x8N9UarRebDtOBtdk" }, "type": "v2.orchestrated_commerce.agreement.created" } ``` ### Event handler ```curl # Select a client library to see examples of # parsing and retrieving event details. ``` ### Fetched payload ```json { "created": "2026-04-06T10:00:00.000Z", "id": "evt_test_65RCjj4EqW1sabcjs2Z16RCMoNQdSQkOWvfL6L5uU2K40u", "livemode": false, "object": "v2.core.event", "related_object": { "id": "orca_test_1gkgAw3x8N9UarRebDtOBtdk", "type": "v2.orchestrated_commerce.agreement", "url": "/v2/orchestrated_commerce/agreements/orca_test_1gkgAw3x8N9UarRebDtOBtdk" }, "type": "v2.orchestrated_commerce.agreement.created", "changes": {}, "data": { "created": "2026-04-06T10:00:00.000Z", "initiated_by": "seller", "orchestrator_details": { "name": "Test Agent", "network_business_profile": "profile_test_61U92KWAstyE3VYhXA6U91t01FSQ3ByrZzKJOCR0y5ey" }, "seller_details": { "network_business_profile": "profile_test_61UQtAVw2yEA80y4mA6UQtAVBKSQt4084jw8nwJXUUdk" } } } ``` ### `v2.orchestrated_commerce.agreement.partially_confirmed` Occurs when an Agreement is partially confirmed (confirmed by one party but not both). Related object: [Agreement](https://docs.stripe.com/api/v2/orchestrated-commerce/agreements/object.md) ## Attributes - `id` (string) Unique identifier for the event. - `object` (string, value is "v2.core.event") String representing the object’s type. Objects of the same type share the same value of the object field. - `context` (string, nullable) Authentication context needed to fetch the event or related object. - `created` (timestamp) Time at which the object was created. - `livemode` (boolean) Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode. - `related_object` (object) Object containing the reference to API resource relevant to the event. - `related_object.id` (string) Unique identifier for the object relevant to the event. - `related_object.type` (string, value is "v2.orchestrated_commerce.agreement") Object tag of the resource relevant to the event. - `related_object.url` (string) URL to retrieve the resource. - `type` (string, value is "v2.orchestrated_commerce.agreement.partially_confirmed") The type of the event. ## Fetched attributes - `changes` (object) Changes that the event makes to properties in the related object. See the [Agreement](https://docs.stripe.com/api/v2/orchestrated-commerce/agreements/object.md) object for the structure of `before` and `after`. - `changes.after` (object) Updated values of properties that the event changed. This is `null` for deletion events. - `changes.before` (object) Values of properties before the event changes. This is `null` for creation events. - `data` (object) Additional data about the event. - `data.orchestrator_confirmed_at` (timestamp) The time at which the orchestrator confirmed the agreement. - `data.orchestrator_details` (object) Details about the orchestrator. - `data.orchestrator_details.name` (string) The name of the orchestrator. This can be the name of the agent or the name of the business. - `data.orchestrator_details.network_business_profile` (string) The Network ID of the orchestrator. - `data.seller_confirmed_at` (timestamp) The time at which the seller confirmed the agreement. - `data.seller_details` (object) Details about the seller. - `data.seller_details.network_business_profile` (string) The Network ID of the seller. - `reason` (object, nullable) Reason for the event. - `reason.request` (object, nullable) Information on the API request that instigated the event. - `reason.request.id` (string) ID of the API request that caused the event. - `reason.request.idempotency_key` (string) The idempotency key transmitted during the request. - `reason.type` (enum) Event reason type. Possible enum values: - `request` The event was published as the result of an API request. ### Event payload ```json { "created": "2026-04-06T10:00:30.000Z", "id": "evt_test_65RCjj4EqW1sabcjs2Z16RCMoNQdSQkOWvfL6L5uU2K40w", "livemode": false, "object": "v2.core.event", "related_object": { "id": "orca_test_1gkgAw3x8N9UarRebDtOBtdk", "type": "v2.orchestrated_commerce.agreement", "url": "/v2/orchestrated_commerce/agreements/orca_test_1gkgAw3x8N9UarRebDtOBtdk" }, "type": "v2.orchestrated_commerce.agreement.partially_confirmed" } ``` ### Event handler ```curl # Select a client library to see examples of # parsing and retrieving event details. ``` ### Fetched payload ```json { "created": "2026-04-06T10:00:30.000Z", "id": "evt_test_65RCjj4EqW1sabcjs2Z16RCMoNQdSQkOWvfL6L5uU2K40w", "livemode": false, "object": "v2.core.event", "related_object": { "id": "orca_test_1gkgAw3x8N9UarRebDtOBtdk", "type": "v2.orchestrated_commerce.agreement", "url": "/v2/orchestrated_commerce/agreements/orca_test_1gkgAw3x8N9UarRebDtOBtdk" }, "type": "v2.orchestrated_commerce.agreement.partially_confirmed", "changes": {}, "data": { "orchestrator_confirmed_at": null, "orchestrator_details": { "name": "Test Agent", "network_business_profile": "profile_test_61U92KWAstyE3VYhXA6U91t01FSQ3ByrZzKJOCR0y5ey" }, "seller_confirmed_at": "2026-04-06T10:00:00.000Z", "seller_details": { "network_business_profile": "profile_test_61UQtAVw2yEA80y4mA6UQtAVBKSQt4084jw8nwJXUUdk" } } } ``` ### `v2.orchestrated_commerce.agreement.terminated` Occurs when an Agreement is terminated. Related object: [Agreement](https://docs.stripe.com/api/v2/orchestrated-commerce/agreements/object.md) ## Attributes - `id` (string) Unique identifier for the event. - `object` (string, value is "v2.core.event") String representing the object’s type. Objects of the same type share the same value of the object field. - `context` (string, nullable) Authentication context needed to fetch the event or related object. - `created` (timestamp) Time at which the object was created. - `livemode` (boolean) Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode. - `related_object` (object) Object containing the reference to API resource relevant to the event. - `related_object.id` (string) Unique identifier for the object relevant to the event. - `related_object.type` (string, value is "v2.orchestrated_commerce.agreement") Object tag of the resource relevant to the event. - `related_object.url` (string) URL to retrieve the resource. - `type` (string, value is "v2.orchestrated_commerce.agreement.terminated") The type of the event. ## Fetched attributes - `changes` (object) Changes that the event makes to properties in the related object. See the [Agreement](https://docs.stripe.com/api/v2/orchestrated-commerce/agreements/object.md) object for the structure of `before` and `after`. - `changes.after` (object) Updated values of properties that the event changed. This is `null` for deletion events. - `changes.before` (object) Values of properties before the event changes. This is `null` for creation events. - `data` (object) Additional data about the event. - `data.orchestrator_details` (object) Details about the orchestrator. - `data.orchestrator_details.name` (string) The name of the orchestrator. This can be the name of the agent or the name of the business. - `data.orchestrator_details.network_business_profile` (string) The Network ID of the orchestrator. - `data.seller_details` (object) Details about the seller. - `data.seller_details.network_business_profile` (string) The Network ID of the seller. - `data.terminated_at` (timestamp) The time at which the agreement was terminated. - `data.terminated_by` (enum) The party that terminated the agreement. Possible enum values: - `orchestrator` The orchestrator/agent. - `seller` The seller/merchant. - `reason` (object, nullable) Reason for the event. - `reason.request` (object, nullable) Information on the API request that instigated the event. - `reason.request.id` (string) ID of the API request that caused the event. - `reason.request.idempotency_key` (string) The idempotency key transmitted during the request. - `reason.type` (enum) Event reason type. Possible enum values: - `request` The event was published as the result of an API request. ### Event payload ```json { "created": "2026-04-06T11:00:00.000Z", "id": "evt_test_65RCjj4EqW1sabcjs2Z16RCMoNQdSQkOWvfL6L5uU2K40x", "livemode": false, "object": "v2.core.event", "related_object": { "id": "orca_test_1gkgAw3x8N9UarRebDtOBtdk", "type": "v2.orchestrated_commerce.agreement", "url": "/v2/orchestrated_commerce/agreements/orca_test_1gkgAw3x8N9UarRebDtOBtdk" }, "type": "v2.orchestrated_commerce.agreement.terminated" } ``` ### Event handler ```curl # Select a client library to see examples of # parsing and retrieving event details. ``` ### Fetched payload ```json { "created": "2026-04-06T11:00:00.000Z", "id": "evt_test_65RCjj4EqW1sabcjs2Z16RCMoNQdSQkOWvfL6L5uU2K40x", "livemode": false, "object": "v2.core.event", "related_object": { "id": "orca_test_1gkgAw3x8N9UarRebDtOBtdk", "type": "v2.orchestrated_commerce.agreement", "url": "/v2/orchestrated_commerce/agreements/orca_test_1gkgAw3x8N9UarRebDtOBtdk" }, "type": "v2.orchestrated_commerce.agreement.terminated", "changes": {}, "data": { "orchestrator_details": { "name": "Test Agent", "network_business_profile": "profile_test_61U92KWAstyE3VYhXA6U91t01FSQ3ByrZzKJOCR0y5ey" }, "seller_details": { "network_business_profile": "profile_test_61UQtAVw2yEA80y4mA6UQtAVBKSQt4084jw8nwJXUUdk" }, "terminated_at": "2026-04-06T11:00:00.000Z", "terminated_by": "seller" } } ```