- Core
- oAuth
- account
- notifications
- account/me
- account/balance
- account/balances
- account/statement
- account/last_statement
- account/products
- account/send_phone_code
- account/register (cpf)
- account/register (cnpj)
- account/verifie_phone_code
- account/upload_docs
- account/transactional_password
- account/check_document
- account/profile_photo
- account/rating
- account/transactional_password
- account/verifie_transactional_password
- account/phone
- account/phone/validate
- account/password
- account/tooltip
- account/profile_photo
- account/country
- account/report
- account/active
- health
- id
- version
- Ultils
- Representative
- validations
- banking
- OpenBanking
- Autenticação
- Conta
- PIX
- Transferências
- Boletos
- Pagamentos de Títulos
- Webhook
- HealthCheckGET
Listando webhooks
Production
https://api.valut.app/openbank/v1
Production
https://api.valut.app/openbank/v1
GET
https://api.valut.app/openbank/v1
Requisição
Authorization
Forneça seu token bearer no cabeçalho
Authorization
ao fazer requisições para recursos protegidos.Exemplo:
Authorization: Bearer ********************
Exemplos de Requisição
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.valut.app/openbank/v1/webhooks'
Respostas
🟢200200 OK
application/json
Body
array of:
webhook_id
string
requerido
url
string
requerido
events
array[string]
requerido
has_authorization
boolean
requerido
authorization
object
requerido
type
string | null
requerido
value
string | null
requerido
created_at
string
requerido
is_active
boolean
requerido
Exemplo
[
{
"webhook_id": "2785b6a6-f535-43e5-aa4f-7b69448161e8",
"url": "https://teste.brasilcash.com.br",
"events": [
"pix_pagar",
"pix_receber"
],
"has_authorization": true,
"authorization": {
"type": null,
"value": null
},
"created_at": "2022-05-02T16:46:08.697",
"is_active": true
},
{
"webhook_id": "743faa84-0479-4fd3-8e56-94f2349b836a",
"url": "https://testeauth.brasilcash.com.br",
"events": [
"pix_pagar",
"pix_receber"
],
"has_authorization": true,
"authorization": {
"type": "basic",
"value": "213"
},
"created_at": "2022-05-02T16:47:30.827",
"is_active": true
},
{
"webhook_id": "0954753e-7a8b-4410-88de-f97c47b5f53c",
"url": "https://teste.brasilcash.com.br",
"events": [
"pix_pagar"
],
"has_authorization": true,
"authorization": {
"type": null,
"value": null
},
"created_at": "2022-05-02T16:45:50.21",
"is_active": true
},
{
"webhook_id": "f6a5b619-8b38-4e66-82a0-faf4a7afad5c",
"url": "https://testeauth.brasilcash.com.br",
"events": [
"pix_pagar",
"pix_receber"
],
"has_authorization": true,
"authorization": {
"type": "bearer",
"value": "213"
},
"created_at": "2022-05-02T16:47:22.44",
"is_active": true
}
]
Modificado em 2024-12-09 08:26:00