Skip to main content
GET
https://api.centralcart.com.br
/
v1
/
app
/
webhooks
Listar Webhooks
curl --request GET \
  --url https://api.centralcart.com.br/v1/app/webhooks
[
  {
    "id": 1,
    "store_id": 1,
    "name": "Meu Webhook",
    "url": "https://meusite.com/webhook",
    "scopes": ["ORDER_APPROVED", "ORDER_REJECTED"],
    "secret": "a1b2c3d4e5f6...",
    "created_at": "2026-02-20T10:00:00.000-03:00",
    "updated_at": "2026-02-20T10:00:00.000-03:00"
  }
]

Response

Retorna um array de webhooks.
id
number
ID do webhook
name
string
Nome do webhook
url
string
URL de destino do webhook
scopes
string[]
Eventos que ativam o webhook
secret
string | null
Secret HMAC do webhook (apenas webhooks v2)
created_at
string
Data de criação
updated_at
string
Data da última atualização
[
  {
    "id": 1,
    "store_id": 1,
    "name": "Meu Webhook",
    "url": "https://meusite.com/webhook",
    "scopes": ["ORDER_APPROVED", "ORDER_REJECTED"],
    "secret": "a1b2c3d4e5f6...",
    "created_at": "2026-02-20T10:00:00.000-03:00",
    "updated_at": "2026-02-20T10:00:00.000-03:00"
  }
]