Skip to main content
GET
/
v1.0
/
webhooks
List Webhooks
curl --request GET \
  --url https://api.lofty.com/v1.0/webhooks \
  --header 'Authorization: <authorization>'
[
  {
    "subscribeId": 1234,
    "teamId": 13233324,
    "listId": 1,
    "callbackUrl": "http://xxx.test.com",
    "vendorId": 123,
    "limit": 100
  }
]

Documentation Index

Fetch the complete documentation index at: https://developer.lofty.com/llms.txt

Use this file to discover all available pages before exploring further.

Headers

Authorization
string
required

Bearer [access_token]

Response

Webhook subscriptions for the team (may be empty).

subscribeId
integer<int64>
required

the subscribe id

Example:

1234

teamId
integer<int64>
required

The ID of the team to get

Example:

13233324

listId
integer<int32>
required

The ID of the list to get

Example:

1

callbackUrl
string
required

The url link that you receive information

Example:

"http://xxx.test.com"

vendorId
integer<int64>

The ID of the vendor

Example:

123

limit
integer<int32>

limitation of webhook notifications in 30 mins for each, max is 5000

Example:

100