Add User to Glassfrog

This guide documents adding users to Glassfrog using their API. This allows you to invite users to your Glassfrog account with a custom action in a Torii workflow. The Glassfrog documentation on the topic can be found on their support site here.

To use this action you will first need to get your Glassfrog API key. Details on where that can be found are in this support article from the Glassfrog support site.

Torii Custom Action Configuration - Invite User to Glassfrog

Method : POST

URL : https://api.glassfrog.com/api/v3/people

Query Parameters

ParameterVariable Mapping

Headers

HeaderValue
Content-Typeapplication/json
X-Auth-TokenAPI_KEY_VALUE

Body

{
    "people": [
        {
            "name": "[Trigger.User.First-name] [Trigger.User.Last-name]",
            "email": "[Trigger.User.Email]"
        }
    ]
}