Skip to main content
GET
/
api
/
v1
/
webhook
Get a list of webhooks
curl --request GET \
  --url https://api.paylora.org/api/v1/webhook \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "total": 123,
  "data": [
    {
      "uuid": "a1b2c3d4-e5f6-7890-1234-567890abcdef",
      "user_uuid": "a1b2c3d4-e5f6-7890-1234-567890abcdef",
      "url": "https://example.com/webhook",
      "secret": "strongsecret"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

orderType
string
default:DESC

Order type

offset
number
default:0

The number of items to skip

limit
number
default:10

The number of items to return

Response

Paginated list

success
boolean
total
integer
data
object[]