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
Parameter | Variable Mapping |
---|
Headers
Header | Value |
---|---|
Content-Type | application/json |
X-Auth-Token | API_KEY_VALUE |
Body
{
"people": [
{
"name": "[Trigger.User.First-name] [Trigger.User.Last-name]",
"email": "[Trigger.User.Email]"
}
]
}
Updated about 2 months ago