# Account Callbacks POST This type of callback URL can be set up at the account level (either by setting it through an API request to "/v3/account" or on the Account Settings page on hellosign.com). All signature request events that involve your account are reported to this URL. This includes events such as receiving a signature request, or when a signature request you've sent is signed by someone. Events are reported to the account callback URL for either requests originating on hellosign.com, or on a partner site, via an embedded flow. You can set your account callback by using the [account API call](/api/account/update) or manually on the [settings page](https://app.hellosign.com/home/myAccount#api). Reference: https://developer.hellosign.com/docs/guides/events-and-callbacks/events-and-callbacks-reference/events/account-update-event-callback ## OpenAPI 3.1 Webhook Specification ```yaml openapi: 3.1.1 info: title: Account Callbacks version: subpackage_events.accountUpdateEventCallback webhooks: account-update-event-callback: post: operationId: account-update-event-callback summary: Account Callbacks description: >- This type of callback URL can be set up at the account level (either by setting it through an API request to "/v3/account" or on the Account Settings page on hellosign.com). All signature request events that involve your account are reported to this URL. This includes events such as receiving a signature request, or when a signature request you've sent is signed by someone. Events are reported to the account callback URL for either requests originating on hellosign.com, or on a partner site, via an embedded flow. You can set your account callback by using the [account API call](/api/account/update) or manually on the [settings page](https://app.hellosign.com/home/myAccount#api). tags: - subpackage_events parameters: [] responses: '200': description: Webhook received successfully requestBody: description: |- **Account Callback Payloads --** Events that are reported at the Account level through the the *Account callback URL* defined in your [API settings](https://app.hellosign.com/home/myAccount#api). The *Account callback URL* can also be updated by calling [Update Account](/api/reference/operation/accountUpdate) and passing a `callback_url`. content: application/json: schema: type: object properties: {} required: [] ```