clearmedia/surveymonkey-api

dev-master 2018-03-17 10:34 UTC

This package is not auto-updated.

Last update: 2024-09-29 05:32:23 UTC


README

A simple SurveyMonkey API for version 3.

Requirements

Installation

Add the following to your composer.json under require:

"require": {
    "clearmedia/surveymonkey-api": "dev-master"
}

Usage

  1. Initiate a client with a long lived token:

    $client = new ClearMedia\SurveyMonkey\Client(MY_API_TOKEN);

  2. Make calls:

    $client->getSurveys([]);

  3. Check out src/Api/*Trait.php for exposed methods in the Client class.