Bynet
  1. Webhook
Bynet
  • šŸš€ Introdução Ć  API
  • šŸ“¦ Criar Pedido
  • My company
    • Get all data
      GET
    • Update
      PUT
    • Update documents
      PUT
    • Get by ID
      GET
    • Update other info
      PUT
  • Products
    • Create
      POST
    • Find All
      GET
    • Find by ID
      GET
    • Update
      PUT
    • Delete
      DELETE
    • Update Status
      PUT
  • Bank
    • Create
      POST
    • Find all
      GET
    • Find by ID
      GET
    • Find pre bank
      GET
  • Transactions
    • Find All
      GET
    • Create
      POST
    • Find by ID
      GET
    • Update delivery status
      PUT
    • Export Excel
      POST
    • Summary all
      GET
    • Fee
      POST
    • Summary by ID
      GET
  • Checkout
    • Layouts
      • Create Layout
      • Find
      • Update settings
      • Update status
      • Find by ID
    • Find info
    • Create Order
    • Find info order
    • Find payment methods by ID
    • Create payment
    • Find payment methods
  • Transfers
    • Create
    • Update
    • Find all
    • Find by ID
    • summary
  • Cashout
    • Create
    • Find all
    • Find by ID
  • Customers
    • Find all
    • Find by ID
  • Balance
    • Find
    • Summary
    • Find finalcial reserve
  • Webhook
    • āš™ļø Webhook: Formato de Postback
    • Create
      POST
    • Find all
      GET
    • Find by ID
      GET
    • Update
      PUT
    • Delete
      DELETE
  1. Webhook

Find all

GET
/api/user/webhook
Este endpoint permite consultar os webhooks cadastrados pelo usuÔrio autenticado, com suporte a filtros de busca, paginação e ordenação.

āœ… Requisitos da Requisição#

MƩtodo HTTP: GET
Endpoint: /api/user/webhook
Content-Type: application/json
Autenticação: api_token

🧠 Header da requisição#

CampoTipoObrigatórioDescrição
x-api-keystringSimToken de autenticação API Key
User-AgentAtivoB2B/1.0Sim

āš™ļø ParĆ¢metros opcionais (query params)#

ParâmetroTipoDescrição
limitinteiroQuantidade de registros por pƔgina
pageinteiroPƔgina atual a ser consultada
valuestringTexto a ser buscado (aplica filtro nos campos relevantes)
orderDirectionstringDireção da ordenação (asc ou desc)
orderBystringCampo utilizado para ordenação (id, type, created_at, etc)

Request

Query Params

Header Params

Responses

🟢200Success
application/json
Body

🟠400Bad Request
🟠401Unauthorized
🟠403Forbidden
🟠404Not Found
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/api/user/webhook?limit=10&page=1&value=1000&orderDirection=desc&orderBy=id' \
--header 'x-api-key: {Token}' \
--header 'User-Agent: AtivoB2B/1.0'
Response Response Example
200 - Success
{
    "status": 200,
    "message": "Webhooks listados com sucesso",
    "data": {
        "data": [
            {
                "id": "00000-000b-4000-0000-0000000000",
                "url": "https://teste.com/webhook",
                "type": "TRANSACTION",
                "createdAt": "2025-04-08T17:10:31.700Z",
                "updatedAt": "2025-04-08T17:10:42.084Z"
            }
        ],
        "pages": 1,
        "page": 1,
        "limit": 10,
        "total": 1
    },
    "error": null
}
Modified atĀ 2025-07-23 19:02:40
Previous
Create
Next
Find by ID
Built with