Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Page Properties
labelapi_docs_client_actions
NameClients / Email Addresses / Update
DescriptionUpdate an email addresses for an existing client
Type
POST
PUT
URL/v9/clients/:client_id/email_addresses/:email_address_id
Credential TypeAPI

Long Description

Update an email addresses for an existing client.

Parameters

Name
Description
Type
Presence
LocationLimitations
client_idThe ID of the specific ClientIntegerRequiredURI
 

addressThe email addressStringOptionalBody
 

labelA label to associate with this addressStringOptionalBody20 characters max

 


Examples

RequestResponse
/v9/clients/:client_id/email_address
Code Block
 
language
code
ruby
themeConfluence
language
ruby
{
   "email_addresses":[
      {
         "label":"Work",
         "address":"moe@moestavern.com"
      }
   ]
}
Code Block
languageruby
themeConfluence
languageruby
{
   "email_addresses":[
      {
         "address":"moe@moestavern.com",
         "label":"Work",
         "updated_at":"2014-02-05T16:00:48Z",
         "url":"/clients/109402/email_addresses/145996",
         "id":"145996"
      }
   ]
}