1. Tasks
  2. Create LID

Tasks

Create LID

A LID is a predefined object of data that is passed around using a unique identifier instead of the data itself.

Uses

  • Use to feed a lot of data into a webhook by using a simple reference

Basic usage

Create a LID with some data

loading...

Parameters

data
Required
JSON
  • Any JSON data you wish to store in the LID
  • This data will be passed through to any system that references it
  • Webhooks can use lids when passing data

isPublic
Required
Bool
  • When true only users from your org have access to its data

Result

loading...

Properties

lid
String

The ID of the LID

Examples

Here is some more complex examples

Using a Lid in a webhook

You can use the LID to pass data without needing to send any data via webhooks

        GET /ex/UUID/LID HTTPS/1.1
Host: webhooks.stubber.com
Content-Type: application/json

      
Result
        GET /ex/UUID/hJJuk2ZfMI7tUuPe HTTPS/1.1
Host: webhooks.stubber.com
Content-Type: application/json

      
loading...