Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Updated number to raw_num in Request params and deleted out of date block.

...

Update an existing phone number for an existing client.

Info

Starting 3/23/2015 You can send number as area_code and number e.g. {:area_code => "212", :number => "5551212" }. the old way {number => "(212) 555 1212"} is still supported, but will be depreciated in the new api release.

 

Parameters

Name
Description
Type
Presence
LocationLimitations
client_idThe ID of the specific ClientIntegerRequiredURI 
phone_number_idThe ID of the specific Phone NumberIntegerRequiredURI 
area_code
The area codeStringOptionalBody4 chars max
raw_num
The rest of the number after the area codeStringOptionalBody
numberThe phone numberStringRequiredBody 
country_code
The country calling codeStringOptionalBody 
extensionSpecific extensionStringOptionalBody 
labelA label to associate with this phone numberStringOptionalBody20 characters max

...

RequestResponse
/v9/clients/:client_id/phone_numbers/:phone_number_id 


Code Block
languageruby
themeConfluence
{
  "label": "Work",
  "country_code": "+1",
  "area_code": "504",
  "
number
raw_num": "555-1212",
  "extension": "12"
}



Code Block
languageruby
themeConfluence
{
   "phone_numbers":[
      {
         "label":"Work",
         "number":"(504) 555-1212",
         "country_code":"+1",
         "extension":"71",
         "updated_at":"2014-02-05T16:00:48Z",
         "url":"/clients/109402/phone_numbers/145996",
         "id":"145996"
      }
   ]
}


...