Skip to main content

Uniphore Help Center Portal

Get single webhook details

GET

/v1/webhooks/{id}

Retrieves the details of a specific webhook by its id.

Security

API Key

Header parameter name

The API key to use for authentication.

orby-api-key

Header parameters

orby-org-id string Required

The organization id to handle webhook requests for.

Path parameters

id string Required

The unique identifier of the webhook.

Responses

id string

image48.png 200

Success. Webhook is fetched successfully.

object

The unique identifier of the webhook.

displayName string

The unique display name of the webhook.

description string

The description of the webhook.

eventTypes Array of string

The event types that the webhook listens to. Possible values are: 'execution.completed', 'execution.failed', 'execution.cancelled'.

string

status string

The status of the webhook. Possible values are: 'enabled', 'disabled'.

endpointUrl string

The URL to which the webhook sends the payload.

orgId string

The id of the organization which webhook registers on.

workflowIds Array of string

The ids of the workflow which webhook registers on.

string

secret string

The secret key used to sign the payload.

disabledReason string

The reason for disabling the webhook.

createdAt string (date-time)

The timestamp when the webhook was created.

createdBy string

The id of user who created the webhook.

updatedAt string (date-time)

The timestamp when the webhook was last updated.

updatedBy string

The id of user who updated the webhook.

Bad Request. The request is invalid. Please check the request body and try again.

400

{ "code": 0, "message": "string" }

EXAMPLE

Unauthorized. Please check if your API key and organization id are correct.

401

{ "code": 0, "message": "string" }

EXAMPLE

404

Not Found. The resource you are trying to access does not exist.

EXAMPLE { "code": 0, "message": "string" }

Rate Limit Exceeded. Please try again later.

429

Internal Server Error. Please try again later or contact Orby support if the issue persists.

500

{ "code": 0, "message": "string" }

EXAMPLE