Profile
Update a profile
Updates the profile and billing details of the authenticated account.
put/v1/profile
Request body
Example request
{
"time_zone": "UTC",
"company_info": {
"industry": "telecommunications"
}
}Response
Returns the updated profile.
Example response
{
"id": 1,
"email": "info@awesome.com",
"first_name": "Jason",
"last_name": "Androux",
"phone": "13291019312",
"additional_info": "Additional info",
"contact_email": "billing@awesome.com",
"timezone": "Pacific/Wallis",
"job_title": "Manager",
"default_short_link_endpoint": "https://short.examples.com",
"default_destinations": [
{
"transport": "sms",
"value": "https://webhook.address.com/inboundSMS"
}
],
"company_info": {
"name": "Awesome company",
"industry": "telecommunications",
"address": "Baker street",
"attn_contact_name": "James Scott",
"vat_number": "VAT123456789",
"country": {
"country_name": "United States",
"country_id": 1
}
}
}