> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://partner.ninjatrader.com/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://partner.ninjatrader.com/_mcp/server.

# Customer Application Update

POST https://live.tradovateapi.com/v1/customerApplication/update
Content-Type: application/json

### Update an existing customer application entity.

**Available to:** All authenticated users

**Environments:** Demo, Live

**[Rate Limit](/overview/core-concepts/rate-limits):** No endpoint-specific limit

Overwrite a `CustomerApplication` entity record. This is the generic entity-update operation — the request body is the full entity, including its `id` and all required fields, so fetch the current record with [`customerApplicationItem`](/api/rest-api-endpoints/users/customer-application-item) first and modify only the fields you intend to change.

Required fields: `id`, `userId`, `accountType`, `legalStatus`, `startDate`, `applicationStatus`, and `archived`. Optional fields include `accountId`, `clearingHouseId`, `rejectReason`, `rejectDate`, `additionalNotes`, `autoApprovalType`, and `duplicate`. When `rejectReason` is `OtherRejectReason`, `additionalNotes` must be non-empty. See [`customerApplicationCreate`](/api/rest-api-endpoints/users/customer-application-create) for the enum values of each field.

This endpoint updates the entity record only; it does not drive the application through the account-opening workflow. Applicant details, documents, and signatures are managed with the application-flow endpoints — [`submitApplicant`](/api/rest-api-endpoints/users/submit-applicant), [`submitCustomerApplicationDocument`](/api/rest-api-endpoints/users/submit-customer-application-document), [`prepareAgreementDocuments`](/api/rest-api-endpoints/users/prepare-agreement-documents), and [`signAgreementDocuments`](/api/rest-api-endpoints/users/sign-agreement-documents).

A successful request returns the updated entity.

**Common Failure Scenarios**

- No accessible customer application exists for the supplied `id`.
- A required field is missing from the request body.
- `rejectReason` is `OtherRejectReason` without `additionalNotes`.
- The caller does not have write access to the application.
- The access token is missing or invalid (returns `HTTP 401`).

Reference: https://partner.ninjatrader.com/connect/api/rest-api-endpoints/users/customer-application-update

## OpenAPI Specification

```yaml
openapi: 3.1.0
info:
  title: connect
  version: 1.0.0
paths:
  /customerApplication/update:
    post:
      operationId: customer-application-update
      summary: Customer Application Update
      description: >-
        ### Update an existing customer application entity.


        **Available to:** All authenticated users


        **Environments:** Demo, Live


        **[Rate Limit](/overview/core-concepts/rate-limits):** No
        endpoint-specific limit


        Overwrite a `CustomerApplication` entity record. This is the generic
        entity-update operation — the request body is the full entity, including
        its `id` and all required fields, so fetch the current record with
        [`customerApplicationItem`](/api/rest-api-endpoints/users/customer-application-item)
        first and modify only the fields you intend to change.


        Required fields: `id`, `userId`, `accountType`, `legalStatus`,
        `startDate`, `applicationStatus`, and `archived`. Optional fields
        include `accountId`, `clearingHouseId`, `rejectReason`, `rejectDate`,
        `additionalNotes`, `autoApprovalType`, and `duplicate`. When
        `rejectReason` is `OtherRejectReason`, `additionalNotes` must be
        non-empty. See
        [`customerApplicationCreate`](/api/rest-api-endpoints/users/customer-application-create)
        for the enum values of each field.


        This endpoint updates the entity record only; it does not drive the
        application through the account-opening workflow. Applicant details,
        documents, and signatures are managed with the application-flow
        endpoints —
        [`submitApplicant`](/api/rest-api-endpoints/users/submit-applicant),
        [`submitCustomerApplicationDocument`](/api/rest-api-endpoints/users/submit-customer-application-document),
        [`prepareAgreementDocuments`](/api/rest-api-endpoints/users/prepare-agreement-documents),
        and
        [`signAgreementDocuments`](/api/rest-api-endpoints/users/sign-agreement-documents).


        A successful request returns the updated entity.


        **Common Failure Scenarios**


        - No accessible customer application exists for the supplied `id`.

        - A required field is missing from the request body.

        - `rejectReason` is `OtherRejectReason` without `additionalNotes`.

        - The caller does not have write access to the application.

        - The access token is missing or invalid (returns `HTTP 401`).
      tags:
        - Users
      parameters:
        - name: Authorization
          in: header
          description: Bearer authentication
          required: true
          schema:
            type: string
      responses:
        '200':
          description: CustomerApplication
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CustomerApplication'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CustomerApplication'
servers:
  - url: https://live.tradovateapi.com/v1
    description: https://live.tradovateapi.com/v1
components:
  schemas:
    CustomerApplicationAccountType:
      type: string
      enum:
        - Customer
        - Employee
        - Giveup
        - House
        - Omnibus
        - Wash
      description: Customer, Employee, Giveup, House, Omnibus, Wash
      title: CustomerApplicationAccountType
    CustomerApplicationLegalStatus:
      type: string
      enum:
        - Corporation
        - GP
        - IRA
        - Individual
        - Joint
        - LLC
        - LLP
        - LP
        - PTR
        - Trust
      description: Corporation, GP, IRA, Individual, Joint, LLC, LLP, LP, PTR, Trust
      title: CustomerApplicationLegalStatus
    CustomerApplicationApplicationStatus:
      type: string
      enum:
        - ApprovedApplication
        - EscalatedToAML
        - InAMLReview
        - InComplianceReview
        - InReview
        - PendingApplication
        - PendingReview
        - RejectedApplication
        - ReviewCompleted
      description: >-
        ApprovedApplication, EscalatedToAML, InAMLReview, InComplianceReview,
        InReview, PendingApplication, PendingReview, RejectedApplication,
        ReviewCompleted
      title: CustomerApplicationApplicationStatus
    CustomerApplicationRejectReason:
      type: string
      enum:
        - AMLWatchlist
        - AutoDenied
        - CIPCannotVerifyIdentity
        - ComplianceRejectionHighRisk
        - DuplicateApplication
        - IncompleteApplication
        - OtherRejectReason
        - PreviousBankruptcy
      description: >-
        AMLWatchlist, AutoDenied, CIPCannotVerifyIdentity,
        ComplianceRejectionHighRisk, DuplicateApplication,
        IncompleteApplication, OtherRejectReason, PreviousBankruptcy
      title: CustomerApplicationRejectReason
    CustomerApplicationAutoApprovalType:
      type: string
      enum:
        - AutoApproved
        - PreApproved
      description: AutoApproved, PreApproved
      title: CustomerApplicationAutoApprovalType
    CustomerApplication:
      type: object
      properties:
        id:
          type: integer
          format: int64
        userId:
          type: integer
          format: int64
        accountType:
          $ref: '#/components/schemas/CustomerApplicationAccountType'
          description: Customer, Employee, Giveup, House, Omnibus, Wash
        legalStatus:
          $ref: '#/components/schemas/CustomerApplicationLegalStatus'
          description: Corporation, GP, IRA, Individual, Joint, LLC, LLP, LP, PTR, Trust
        startDate:
          type: string
          format: date-time
        applicationStatus:
          $ref: '#/components/schemas/CustomerApplicationApplicationStatus'
          description: >-
            ApprovedApplication, EscalatedToAML, InAMLReview,
            InComplianceReview, InReview, PendingApplication, PendingReview,
            RejectedApplication, ReviewCompleted
        archived:
          type: boolean
        rejectReason:
          $ref: '#/components/schemas/CustomerApplicationRejectReason'
          description: >-
            AMLWatchlist, AutoDenied, CIPCannotVerifyIdentity,
            ComplianceRejectionHighRisk, DuplicateApplication,
            IncompleteApplication, OtherRejectReason, PreviousBankruptcy
        additionalNotes:
          type: string
        accountId:
          type: integer
          format: int64
        rejectDate:
          type: string
          format: date-time
        clearingHouseId:
          type: integer
          format: int64
        autoApprovalType:
          $ref: '#/components/schemas/CustomerApplicationAutoApprovalType'
          description: AutoApproved, PreApproved
        duplicate:
          type: boolean
      required:
        - userId
        - accountType
        - legalStatus
        - startDate
        - applicationStatus
        - archived
      title: CustomerApplication
  securitySchemes:
    bearer_access_token:
      type: http
      scheme: bearer

```

## Examples



**Request**

```json
{
  "userId": 1024,
  "accountType": "Customer",
  "legalStatus": "Corporation",
  "startDate": "2024-01-15T09:30:00Z",
  "applicationStatus": "ApprovedApplication",
  "archived": false
}
```

**Response**

```json
{
  "userId": 1024,
  "accountType": "Customer",
  "legalStatus": "Corporation",
  "startDate": "2024-01-15T09:30:00Z",
  "applicationStatus": "ApprovedApplication",
  "archived": false,
  "id": 56789,
  "rejectReason": "IncompleteApplication",
  "additionalNotes": "Missing signature on page 3, applicant notified to provide.",
  "accountId": 789456,
  "rejectDate": "2024-01-20T14:45:00Z",
  "clearingHouseId": 2345,
  "autoApprovalType": "PreApproved",
  "duplicate": false
}
```

**SDK Code**

```python
import requests

url = "https://live.tradovateapi.com/v1/customerApplication/update"

payload = {
    "userId": 1024,
    "accountType": "Customer",
    "legalStatus": "Corporation",
    "startDate": "2024-01-15T09:30:00Z",
    "applicationStatus": "ApprovedApplication",
    "archived": False
}
headers = {
    "Authorization": "Bearer <token>",
    "Content-Type": "application/json"
}

response = requests.post(url, json=payload, headers=headers)

print(response.json())
```

```javascript
const url = 'https://live.tradovateapi.com/v1/customerApplication/update';
const options = {
  method: 'POST',
  headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
  body: '{"userId":1024,"accountType":"Customer","legalStatus":"Corporation","startDate":"2024-01-15T09:30:00Z","applicationStatus":"ApprovedApplication","archived":false}'
};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
```

```go
package main

import (
	"fmt"
	"strings"
	"net/http"
	"io"
)

func main() {

	url := "https://live.tradovateapi.com/v1/customerApplication/update"

	payload := strings.NewReader("{\n  \"userId\": 1024,\n  \"accountType\": \"Customer\",\n  \"legalStatus\": \"Corporation\",\n  \"startDate\": \"2024-01-15T09:30:00Z\",\n  \"applicationStatus\": \"ApprovedApplication\",\n  \"archived\": false\n}")

	req, _ := http.NewRequest("POST", url, payload)

	req.Header.Add("Authorization", "Bearer <token>")
	req.Header.Add("Content-Type", "application/json")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
```

```ruby
require 'uri'
require 'net/http'

url = URI("https://live.tradovateapi.com/v1/customerApplication/update")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n  \"userId\": 1024,\n  \"accountType\": \"Customer\",\n  \"legalStatus\": \"Corporation\",\n  \"startDate\": \"2024-01-15T09:30:00Z\",\n  \"applicationStatus\": \"ApprovedApplication\",\n  \"archived\": false\n}"

response = http.request(request)
puts response.read_body
```

```java
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.post("https://live.tradovateapi.com/v1/customerApplication/update")
  .header("Authorization", "Bearer <token>")
  .header("Content-Type", "application/json")
  .body("{\n  \"userId\": 1024,\n  \"accountType\": \"Customer\",\n  \"legalStatus\": \"Corporation\",\n  \"startDate\": \"2024-01-15T09:30:00Z\",\n  \"applicationStatus\": \"ApprovedApplication\",\n  \"archived\": false\n}")
  .asString();
```

```php
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('POST', 'https://live.tradovateapi.com/v1/customerApplication/update', [
  'body' => '{
  "userId": 1024,
  "accountType": "Customer",
  "legalStatus": "Corporation",
  "startDate": "2024-01-15T09:30:00Z",
  "applicationStatus": "ApprovedApplication",
  "archived": false
}',
  'headers' => [
    'Authorization' => 'Bearer <token>',
    'Content-Type' => 'application/json',
  ],
]);

echo $response->getBody();
```

```csharp
using RestSharp;

var client = new RestClient("https://live.tradovateapi.com/v1/customerApplication/update");
var request = new RestRequest(Method.POST);
request.AddHeader("Authorization", "Bearer <token>");
request.AddHeader("Content-Type", "application/json");
request.AddParameter("application/json", "{\n  \"userId\": 1024,\n  \"accountType\": \"Customer\",\n  \"legalStatus\": \"Corporation\",\n  \"startDate\": \"2024-01-15T09:30:00Z\",\n  \"applicationStatus\": \"ApprovedApplication\",\n  \"archived\": false\n}", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
```

```swift
import Foundation

let headers = [
  "Authorization": "Bearer <token>",
  "Content-Type": "application/json"
]
let parameters = [
  "userId": 1024,
  "accountType": "Customer",
  "legalStatus": "Corporation",
  "startDate": "2024-01-15T09:30:00Z",
  "applicationStatus": "ApprovedApplication",
  "archived": false
] as [String : Any]

let postData = JSONSerialization.data(withJSONObject: parameters, options: [])

let request = NSMutableURLRequest(url: NSURL(string: "https://live.tradovateapi.com/v1/customerApplication/update")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "POST"
request.allHTTPHeaderFields = headers
request.httpBody = postData as Data

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error as Any)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()
```