Put /api/v3/admin/customapplicationaction/{webhookId}

Operation: ProcessCustomAppActionV3 Permissions: ApplicationSettings (Manage)

Summary

Fire a custom application action webhook

Path and Query Parameters

Parameter Description Type Location
webhookId The identifier for the webhook being firedRequired integer Path

Response Parameters

HTTP 200


Body Parameters

Content Type: application/json

Type Reference: WebhookLogDetailsResponse

Parameter Description Type
url The URL that the webhook is configured for Required (defined) string
request The request that was sent from the webhook (headers and body) Required (defined) string
response The response that was received from the configured url (headers and body) Required (defined) string
result The HTTP status code that was received from the configured url
0 indicates no response was received from the configured url Required (defined)
string
user UserChild
   userId The user identifier integer
   userCode The user code string
   fullName The user’s full name string

Responses

HTTP 200

Body

Content Type: application/json
{
  "url": "string",
  "request": "string",
  "response": "string",
  "result": "string",
  "user": {
    "userId": 1,
    "userCode": "string",
    "fullName": "string"
  }
}