Iorq Public Routes
  1. Webhook
Iorq Public Routes
  • AUTH
    • Token de acesso
      POST
  • CCB
    • Cessão de CCB
      POST
    • Renegociação de CCB
      PATCH
    • Cessão de CCB com Documentos de Lastro
      POST
    • Recompra de CCB
      POST
    • Atualização de status de instrumento financeiro
      PATCH
    • Liquidação de parcelas
      POST
    • Liquidação antecipada de parcelas
      POST
  • Webhook
    • Create Webhook
      POST
    • List Webhooks
      GET
    • Get Webhook By Id
      GET
    • Update Webhook
      PATCH
  • Webhook Outgoing
    • Payload enviado para a URL do webhook registrado pelo cliente
      POST
  • Esquemas
    • Schemas
      • TokenRequest
      • TokenResponse
      • WebhookBase
      • OperationData
      • Address
      • Borrower
      • Cosigner
      • InstallmentLoanRequest
      • Installment
      • BackingDocument
      • CreateLoanRequest
      • RepurchaseLoanRequest
      • SettleInstallmentRequest
      • PrepaymentInstallment
      • InstallmentPrepaymentRequest
      • WebhookCreateSchema
      • WebhookCreateResponseSchema
      • WebhookResponse
      • WebhookUpdateSchema
      • GetAllWebhookResponse
      • HTTPValidationError
      • ValidationError
      • LoanIdentification
      • BaseLoanRequest
      • LoanRenegotiationRequest
      • LoanStatusUpdateRequest
      • WebhookPayload
  1. Webhook

List Webhooks

GET
/webhook

Requisição

Authorization
JWT Bearer
Adicionar o parâmetro
Authorization
a Cabeçalhos
Exemplo:
Authorization: ********************
or
Parâmetros de Consulta

Respostas

🟢200OK
application/json
Successful Response
Body

🟠422Erro de Parâmetro
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://webhook-sender-manager-development.iorq.com.br/api/webhook' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Exemplo 1
{
    "response": [
        {
            "webhook_id": "string",
            "fund_id": "string",
            "message_type": "LOAN_UPDATE",
            "status": "string",
            "webhook_url": "string",
            "headers": {
                "property1": "string",
                "property2": "string"
            },
            "created_at": "string",
            "updated_at": "string",
            "max_attempts": 0
        }
    ],
    "count": 0,
    "next_page_token": "string"
}
Modificado em 2025-12-08 12:31:25
Página anterior
Create Webhook
Próxima página
Get Webhook By Id
Built with