Listar Configurações
GET
https://api.eduzz.com/webhook/v1/subscription
Required scopes:webhook_read
Lista Inscrições de Webhook
Query params
id
string
Id do contato
email
email
Email do contato
Body params
id
string
Id do contato
name
string
Nome do contato
email
email
Email do contato
phones
array of string
Telefones do contato
Response params (201)
id
string
Id da Inscrição
secretId
string
Id do Secret
name
string
Nome da Inscrição
status
string
Status da Inscrição
url
string
Url do Webhook
events
array of string
Eventos do Webhook
Status codes
Status | Descrição |
201 | Success |
400 | Bad Request |
Exemplos
1curl --request GET \
2 --url https://api.eduzz.com/webhook/v1/subscription \
3 --header 'Accept: application/json' \
4 --header 'Content-Type: application/json' \
5 --header 'authorization: Bearer {{YOUR_ACCESS_TOKEN}}'
Response
1[
2 {
3 "id": "yaeung4oaxt25pi0bzzycoezf",
4 "secretId": "87fce2b9bbbf534fc91fa63fdb697a4e9b7f17205c2577ef2cb1f9757307c180",
5 "name": "Aluno Assistiu a Aula",
6 "status": "active",
7 "url": "https://webhook.site/c8ff7d31-4fd9-40c7-8eca-b2334d996fb0",
8 "events": [
9 "nutror.lesson_watched"
10 ]
11 }
12]