Skip to content

Get all webhooks that are currently set

Request

Returns a list of all active webhooks

Security
X-API-KEY or Authorization
curl -i -X GET \
  https://uberall.com/api/sales-partners/webhooks \
  -H 'X-API-KEY: YOUR_API_KEY_HERE'

Responses

Successfully retrieved webhooks

Body*/*
statusstringrequired
Enum:"SUCCESS""PENDING""QUOTA_LIMIT_EXCEED""NOT_AUTHORIZED""FORBIDDEN""BAD_ACCESS_TOKEN""BAD_PRIVATE_KEY""BAD_PUBLIC_KEY""MISSING_PARAMETER""INVALID_PARAMETER"
messagestring

(optional) Holds further information about the response

warningsArray of strings

(optional) Holds further warnings

responseArray of objectsrequired

The actual response object of the response

Response
{
  "status": "SUCCESS",
  "message": "string",
  "warnings": [
    "string"
  ],
  "response": [
    {
      "id": 0,
      "dateCreated": "2019-08-24T14:15:22Z",
      "lastUpdated": "2019-08-24T14:15:22Z",
      "pushUrl": "string",
      "type": "ADMIN_ALERT"
    }
  ]
}