client/v1/customer/profile
[PUT] client/v1/customer/profile
Update customer profile
The client admin update customer profile endpoint allows the client to update a customer's profile.
Example [PUT] Request
{{avenu_base_url}}/client/v1/customer/profile
{
"customerAccountNumber": "",
"address" : "",
"city" : "",
"state" : "",
"zipCode" : "",
"country" : "",
"citizenship" : "",
"email" : "",
"mobilePhone" : ""
}
Input Parameters
Parameter | Format | Required |
---|---|---|
"customerAccountNumber" | String | Y |
"address" | String | Y |
"city" | String | Y |
"state" | String | Y |
"zipCode" | String | N |
"country" | ISO 3166 Alpha-3 country code | Y |
"citizenship" | ISO 3166 Alpha-3 country code | N |
"email" | String | Y |
"mobilePhone" | String | Y |
Example Response
{
"customerAccountNumber": "",
"address" : "",
"city" : "",
"state" : "",
"zipCode" : "",
"country" : "",
"citizenship" : "",
"email" : "",
"mobilePhone" : ""
}
Response Elements
Element | Details |
---|---|
"customerAccountNumber" | The customer's Avenu client account number |
"address" | The customer's physical street address |
"city" | The customer's city |
"state" | The customer's state |
"zipCode" | The customer's zip code |
"country" | The address' country |
"citizenship" | The customer's citizenship |
"email" | The customer's email |
"mobilePhone" | The customer's mobile phone |
Updated almost 2 years ago