> ## Documentation Index
> Fetch the complete documentation index at: https://docs.upstackdata.com/llms.txt
> Use this file to discover all available pages before exploring further.

# submit_application Event

> Track when a user submits an application

Fires when a user submits an application. Use this for wholesale applications, affiliate program signups, partnership requests, and similar high-value lead capture.

<Note>
  **Shopify:** Manual implementation required. Integrate with your application forms.
</Note>

## JavaScript

```javascript theme={null}
window._upstack('track', 'submit_application', {
  applicationType: 'wholesale_partner',
  value: 5000.00,
  currency: 'USD'
});
```

## Properties

| Property        | Type   | Required | Description                 |
| --------------- | ------ | -------- | --------------------------- |
| applicationType | string | No       | Application type            |
| value           | number | No       | Estimated application value |
| currency        | string | No       | ISO 4217 currency code      |

## When to Fire

* Wholesale application submission
* Affiliate program application
* Partnership request

## Related Events

* [lead](/pixel/events/lead) — For general lead capture
* [complete\_registration](/pixel/events/complete-registration) — For account signups
