update customer info

API Docs by APIMATIC

Update Customer Info

Use this method to update account personal and billing information. The method also allows to change the webhook address to forward inbound SMS messages sent to SMS enabled DIDs on the account.

This endpoint requires authentication.

PUT /profile
  • EXPLORER
  • PARAMETERS
Endpoint Arguments*
Parameters*
body (UpdateCustomerInfoRequest)*

User's first name.

User's last name.

User's contact email. The email address is used to send invoices and email notifications. If not specified, all emails, alerts and invoices are sent to email

User's additional info

Account time zone

Company name

Company billing address

Billing contact name

A webhook URL to forward inbound SMS sent to SMS enabled DIDs on the account

Response Type

curl -X PUT \
  --url 'https://api.wavix.com/v1/profile?appid=appid' \
  -H 'Accept: application/json'\
  -H 'Content-Type: application/json' \
  --data-raw '{
  "first_name": "Helen",
  "last_name": "Williams",
  "contact_email": "contact@email.com",
  "additional_info": "additional_info0",
  "timezone": "America/Phoenix",
  "company_name": "Awesome company",
  "billing_address": "927 Murazik Keys, East Hermanshire, NE 32882-2764",
  "attn_contact_name": "James Scott",
  "sms_relay_url": "https://webhook.address.com/inboundSMS"
}'