Skip to main content
GET
/
v1
/
webhook
/
{id}
Consultar webhook
curl --request GET \
  --url https://api.ephra.io/v1/webhook/{id} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "id": 42,
    "name": "Produção",
    "isActive": true,
    "signatureSecret": "a1b2c3...",
    "url": "https://seusite.com/webhooks/ephra",
    "events": [],
    "productIds": [
      "<string>"
    ],
    "createdAt": "2026-06-03T12:00:00.000Z"
  }
}
Retorna os detalhes de um webhook cadastrado, pelo seu id.

Authorizations

Authorization
string
header
required

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

Path Parameters

id
integer
required

Response

Dados do webhook

success
boolean
Example:

true

data
object