Patch
PATCH /participants/customers/:participantCode
PATCH /participants/customers/:participantCode
Sample Request
Sample Response
This endpoint is only available to certain participants leveraging NDAX for customer settlements. Please contact us for more information on enabling this endpoint.
This endpoint enables you to update information that’s been validated with your customers. When making certain updates, groups of data must be sent together. If the data is not represented below, it’s not updatable. You can update more than one group of data at one time.
Request body:
Parameter | Description | Type |
---|---|---|
platform_updated_at | The UNIX timestamp in milliseconds of when your customer updated their information with you and you approved that update. Only one timestamp should be sent per call (i.e. if you update name and address at the same time, there should be one timestamp, not one timestamp for name and one timestamp for address) | number |
first_name | The first name of the customer, required | string |
last_name | The last name of the customer, required | string |
address_one | First line for the customer's address, required Note: PO Box addresses are not accepted | string |
address_two | First line for the customer's address, if applicable, optional | string |
country | The country the customer resides in, required Note: must be one of the supported countries | string |
state | The state the customer resides in, required if country is "United States" Note: must be one of the supported states | string |
city | The city customer resides in, required | string |
zip | Zip code of the customer in the format | string |
Customer email address, required
Note: NDAX will validate that the | string | |
id_number_type | The type of ID document provided, required Note: must be one of the supported ID types | string |
id_number | The ID number of the customer, required | string |
Additional fields in response:
Parameter | Description | Type |
---|---|---|
platform_code | The unique identifier for the Platform onto which the customer has been created | string |
participant_code | The NDAX identifier for the new customer Note: this value is key to enable you to submit trades and check account balances for this customer | string |
platform_updated_at | The timestamp of when a customer updated their information with your platform | number |
Possible Responses:
Status Code | Description |
---|---|
200 OK | The customer was successfully created. Note: the request is idempotent only IF the |
400 Bad Request | The request is invalid, OR the payload is the*same* as a previously submitted request, but the |
Last updated