Upland Mobile Commons Ruby Gem

CI Status

A ruby gem for interacting with the Upland Mobile Commons API.

Usage

client = UplandMobileCommonsRest.new(username: 'user', password: 'password')
# List Campaigns
client.campaigns.list

# create a group
client.groups.create('Chocolate Lovers')

# create/update a profile
client.profiles.update(phone_number: '123-456-7890')

# retrieve a profile by its phone number
client.profiles.get('123-456-7890')