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

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

This package is not auto-updated.

Last update: 2025-10-26 11:23:37 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.