Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

NameClients / Email Addresses / Create
DescriptionCreate one or more email addresses for an existing client
TypePOST
URL/v9/clients/:id/email_addresses

Long Description

Create one or more email addresses for an existing client. Note that this takes an array of email addresses even if only creating one.

Parameters

Name
Description
Value Type
Required
Limitations
addressThe email addressStringRequired 
labelA label to associate with this addressStringOptional20 characters max

 

Examples

RequestResponse
/v9/clients/:id/email_address 
{
   "email_addresses":[
      {
         "label":"Work",
         "address":"moe@moestavern.com"
      }
   ]
}
{
   "email_addresses":[
      {
         "address":"moe@moestavern.com",
         "label":"Work",
         "updated_at":"2014-02-05T16:00:48Z",
         "url":"/clients/109402/email_addresses/145996",
         "id":"145996"
      }
   ]
}
  • No labels