PHPackages                             collingmedia/lasso-api - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. collingmedia/lasso-api

ActiveLibrary[API Development](/categories/api)

collingmedia/lasso-api
======================

A PHP SDK for the Lasso CRM API.

v0.0.1(6y ago)34[1 PRs](https://github.com/Colling-Media/lasso-api/pulls)proprietaryPHPPHP &gt;=7.2

Since Jul 11Pushed 6y ago1 watchersCompare

[ Source](https://github.com/Colling-Media/lasso-api)[ Packagist](https://packagist.org/packages/collingmedia/lasso-api)[ Docs](https://collingmedia.com)[ RSS](/packages/collingmedia-lasso-api/feed)WikiDiscussions master Synced 2d ago

READMEChangelog (1)Dependencies (7)Versions (3)Used By (0)

Lasso API
=========

[](#lasso-api)

[![Latest Version on Packagist](https://camo.githubusercontent.com/b8cd400d814213fb116ac02647fceb465c675b43f6b25c1484ae7ea42cf91ea0/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f636f6c6c696e676d656469612f6c6173736f2d6170692e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/collingmedia/lasso-api)[![Build Status](https://camo.githubusercontent.com/e01bfb7766a1df770653d0eb0c574474ca2527519d83726ca4e98afecd8196bd/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f636f6c6c696e672d6d656469612f6c6173736f2d6170692f6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://travis-ci.org/colling-media/lasso-api)[![StyleCI](https://camo.githubusercontent.com/065d6da132ef31578550758cff114b3237b843c6a8bf7c421f484621edf4eed7/68747470733a2f2f7374796c6563692e696f2f7265706f732f3139363436383633362f736869656c64)](https://styleci.io/repos/196468636)[![Total Downloads](https://camo.githubusercontent.com/a6dabae05f4ed0cfed15f6244af045e5a77a07e3b1ae0eeb18277f045b23f199/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f636f6c6c696e676d656469612f6c6173736f2d6170692e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/collingmedia/lasso-api)

Manage Registrant and Inventory data within Lasso CRM. Authorization header with a Bearer JWT api key token is required for all requests. API keys are project/location based, and can be obtained from your business contact with Lasso Data Systems. In the future, Project Admin's will be able to generate their own api keys from the Lasso CRM web application. To try it out in swagger: - Select the `Authorize` button and place your api key in the textbox - Ensure that the api key is prefixed with `Bearer` including a space separating `Bearer` from the api key - Go to the route you want to try out in the swagger definition - Select `Try it out` - Input any required fields, query params, and request payload - Select `Execute` Alternatively, you can try it on your command line with curl, for example: `curl -X GET \"https://api.lassocrm.com/v1/registrants/123456\" -H \"accept: application/json\" -H \"Authorization: Bearer ***apikey***\"`

Requirements
------------

[](#requirements)

PHP 7.0 and later

Installation &amp; Usage
------------------------

[](#installation--usage)

### Composer

[](#composer)

Then run `composer install`

### Manual Installation

[](#manual-installation)

Download the files and include `autoload.php`:

```
    require_once('/lasso-api/vendor/autoload.php');
```

Tests
-----

[](#tests)

To run the unit tests:

```
composer install
./vendor/bin/phpunit

```

Getting Started
---------------

[](#getting-started)

Please follow the [installation procedure](#installation--usage) and then run the following:

```
