Low commit activity in last 3 years
No release in over a year
A simple ruby API client gem for the Upland Mobile Commons REST API
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

 Project Readme

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')