Skip to main content

Quick Start

Let's discover the ConnectIt+ API in less than 5 minutes.

Plugins

A Plugin is how you'll interact with the ConnectIt+ API. Plugins installed for users of Mobile Assistant grant access to scoped data on the user's behalf. This is a powerful way to build custom integrations with Mobile Assistant.

Request API Access and Plugin Creation

If you haven't already, you'll need to request a Mobile Assistant account, API access, and initial plugin creation via our contact form. In your request, please include your full name and company email address you wish to use for your account, and specify a title for the plugin you will be building.

Developer Portal

Once you have been granted API access and initial plugin creation by our team, head over to our Developer Portal (dev.mobileassistant.us). After you login, click on the Plugins tab and you should see your plugin listed (if not, please contact support via our contact form).

On the Account tab, you should take notice of a "Developer Key". You'll need to include this in the Authorization header in order to sign requests.

Here's an example of how to list your plugin(s) using your Developer Key and the curl command line tool:

curl -H "Authorization: Bearer DEVELOPER_KEY" \
-H "Content-Type: application/json" \
https://api.mobileassistant.us/plugins

# Example response:
# {
# "id": "4413144",
# "name": "Demo Plugin",
# ...
# }

Installing a Plugin

Upon initial creation of the Plugin, our team will install it for your Mobile Assistant account. When you are ready to install the plugin for additional users, please reach out via our contact form. In order to install a plugin for user(s), please include your Mobile Assistant account email address, the title of the plugin, and the Mobile Assistant account email address for each user you wish to add.