clearmedia / surveymonkey-api
Installs: 15
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
pkg:composer/clearmedia/surveymonkey-api
Requires
- php: >=5.5
- guzzlehttp/guzzle: 6.*@stable
This package is not auto-updated.
Last update: 2025-10-26 11:23:37 UTC
README
A simple SurveyMonkey API for version 3.
Requirements
- PHP 5.5+
- Composer - http://www.getcomposer.org
Installation
Add the following to your composer.json under require:
"require": {
    "clearmedia/surveymonkey-api": "dev-master"
}
Usage
- 
Initiate a client with a long lived token: $client = new ClearMedia\SurveyMonkey\Client(MY_API_TOKEN);
- 
Make calls: $client->getSurveys([]);
- 
Check out src/Api/*Trait.phpfor exposed methods in the Client class.