For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Support Center
OverviewAPIResources
OverviewAPIResources
  • REST API Endpoints
    • GETGet Timestamp
    • GETO IDC User Info
      • GETCorporate Applicant Dependents
      • GETCorporate Applicant Item
      • GETCorporate Applicant Items
      • GETCorporate Applicant L Dependents
      • GETCustomer Application Check State Dependents
      • GETCustomer Application Check State Item
      • GETCustomer Application Check State Items
      • GETCustomer Application Check State L Dependents
      • GETCustomer Application Signing State Dependents
      • GETCustomer Application Signing State Item
      • GETCustomer Application Signing State Items
      • GETCustomer Application Signing State L Dependents
      • POSTDownload Sub Account Request Preview
      • POSTDownload User Document Preview
      • POSTGet Agreement Document
      • POSTGet Current Annual Review Info
      • POSTGet Localized Agreement Document
      • POSTGet User Signed Document
      • GETIndividual Applicant Dependents
      • GETIndividual Applicant Item
      • GETIndividual Applicant Items
      • GETIndividual Applicant L Dependents
      • GETJoint Applicant Dependents
      • GETJoint Applicant Item
      • GETJoint Applicant Items
      • GETJoint Applicant L Dependents
      • GETSub Account Check State Dependents
      • GETSub Account Check State Item
      • GETSub Account Check State Items
      • GETSub Account Check State L Dependents
      • POSTSubmit Annual Review
      • POSTUpdate Contact Info
      • POSTUpdate Contact Info Name
Support Center
LogoLogo
REST API EndpointsPersonal Info

Update Contact Info

POST
https://demo-d.tradovateapi.com/v1/contactInfo/updatecontactinfo
POST
/v1/contactInfo/updatecontactinfo
1const url = 'https://demo-d.tradovateapi.com/v1/contactInfo/updatecontactinfo';
2const options = {
3 method: 'POST',
4 headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
5 body: '{"userId":1,"firstName":"string","lastName":"string","streetAddress1":"string","city":"string","country":"string","phone":"string"}'
6};
7
8try {
9 const response = await fetch(url, options);
10 const data = await response.json();
11 console.log(data);
12} catch (error) {
13 console.error(error);
14}
200Successful
1{
2 "errorText": "string",
3 "contactInfo": {
4 "userId": 1,
5 "firstName": "string",
6 "lastName": "string",
7 "streetAddress1": "string",
8 "city": "string",
9 "country": "string",
10 "phone": "string",
11 "id": 1,
12 "streetAddress2": "string",
13 "state": "string",
14 "postCode": "string",
15 "mailingIsDifferent": true,
16 "mailingStreetAddress1": "string",
17 "mailingStreetAddress2": "string",
18 "mailingCity": "string",
19 "mailingState": "string",
20 "mailingPostCode": "string",
21 "mailingCountry": "string",
22 "approvedId": 1,
23 "jointFirstName": "string",
24 "jointLastName": "string",
25 "iraCustodianName": "string"
26 }
27}
Was this page helpful?
Previous

Update Contact Info Name

Next
Built with

Authentication

AuthorizationBearer

Bearer authentication of the form Bearer <token>, where token is your auth token.

Request

This endpoint expects an object.
userIdlongRequired
firstNamestringRequired<=64 characters
lastNamestringRequired1-64 characters
streetAddress1stringRequired3-61 characters
citystringRequired2-35 characters
countrystringRequired=2 characters
phonestringRequired<=21 characters
streetAddress2stringOptional<=61 characters
statestringOptional2-64 characters
postCodestringOptional4-11 characters
mailingIsDifferentbooleanOptional
mailingStreetAddress1stringOptional<=8192 characters
mailingStreetAddress2stringOptional<=8192 characters
mailingCitystringOptional<=64 characters
mailingStatestringOptional<=64 characters
mailingPostCodestringOptional<=64 characters
mailingCountrystringOptional<=2 characters
approvedIdlongOptional
jointFirstNamestringOptional<=64 characters
jointLastNamestringOptional1-64 characters

Response

UpdateContactInfoResponse
errorTextstring<=8192 characters

Non-empty if the request failed

contactInfoobject