Skip to content

Commit

Permalink
Updated documentation to include create_customer_phone and update_cus…
Browse files Browse the repository at this point in the history
…tomer_phone
  • Loading branch information
colinc committed Apr 19, 2012
1 parent a5e8551 commit 9432c2e
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions README.mkd
Expand Up @@ -107,6 +107,14 @@ Usage Examples
# Update a customer email
Assistly.update_customer_email(12345, 54321, :email => "foo@example.com")
Assistly.update_customer_email(12345, 54321, :customer_contact_type => "work")

# Add a customer phone number
Assistly.create_customer_phone(12345, "555-368-7147")
Assistly.create_customer_phone(12345, "555-368-7147", :customer_contact_type => "work")

# Update a customer phone number
Assistly.update_customer_phone(12345, 54321, :phone => "555-368-7147")
Assistly.update_customer_phone(12345, 54321, :customer_contact_type => "work")

######
# Interactions
Expand Down

0 comments on commit 9432c2e

Please sign in to comment.