GET
/
webhooks
/
{webhook_id}
/
secret
curl --request GET \
  --url https://api.live.paisr.tech/{version}/webhooks/{webhook_id}/secret \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "secret": "ey7bTCm6tur63CR6mzbuq23r"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

webhook_id
string
required

The Webhook ID.

Response

200
application/json
Successfully retrieved webhook secret.
success
boolean
Example:

true

data
object