Skip to main content
GET
https://api.owem.com.br
/
v4
/
i
/
webhooks
/
config
/
me
List All Webhooks
curl --request GET \
  --url https://api.owem.com.br/v4/i/webhooks/config/me \
  --header 'Authorization: <authorization>'
{
  "requestId": "c23f9f18-9c2b-4bda-812a-75f8c08b2b99",
  "success": true,
  "size": 2,
  "data": [
    {
      "id": "wc_91a5d6c1-fb32-4cbe-8c33-1d4b3af1e66a",
      "configId": "wc_91a5d6c1-fb32-4cbe-8c33-1d4b3af1e66a",
      "userId": "usr_aa11bb22",
      "event": ["*"],
      "targetUrl": "https://webhook.site/your-app-endpoint",
      "authHeader": "Bearer-abc123xyz",
      "isEnabled": true,
      "createdAt": 1760201000000,
      "updatedAt": 1760201000000,
      "deletedAt": null
    },
    {
      "id": "wc_37e45f9d-2a6b-489f-b950-3b12e3d6cbf0",
      "configId": "wc_37e45f9d-2a6b-489f-b950-3b12e3d6cbf0",
      "userId": "usr_aa11bb22",
      "event": ["pix_in:qrcode_paid", "pix_out:processing"],
      "targetUrl": "https://hooks.yourcompany.com/owem",
      "authHeader": "Bearer-securetoken",
      "isEnabled": true,
      "createdAt": 1760208000000,
      "updatedAt": 1760208600000,
      "deletedAt": null
    }
  ]
}

Purpose

Returns a list of all webhook configurations created by the authenticated user. Each configuration represents a registered URL to receive automatic event notifications.

Authentication

Authorization
string
required
Basic Auth required in format: Basic {Base64(API_KEY:API_SECRET)}

Response

requestId
string
UUID for tracking
success
boolean
Operation status
size
number
Number of configurations returned
data
array
Array of webhook configurations
{
  "requestId": "c23f9f18-9c2b-4bda-812a-75f8c08b2b99",
  "success": true,
  "size": 2,
  "data": [
    {
      "id": "wc_91a5d6c1-fb32-4cbe-8c33-1d4b3af1e66a",
      "configId": "wc_91a5d6c1-fb32-4cbe-8c33-1d4b3af1e66a",
      "userId": "usr_aa11bb22",
      "event": ["*"],
      "targetUrl": "https://webhook.site/your-app-endpoint",
      "authHeader": "Bearer-abc123xyz",
      "isEnabled": true,
      "createdAt": 1760201000000,
      "updatedAt": 1760201000000,
      "deletedAt": null
    },
    {
      "id": "wc_37e45f9d-2a6b-489f-b950-3b12e3d6cbf0",
      "configId": "wc_37e45f9d-2a6b-489f-b950-3b12e3d6cbf0",
      "userId": "usr_aa11bb22",
      "event": ["pix_in:qrcode_paid", "pix_out:processing"],
      "targetUrl": "https://hooks.yourcompany.com/owem",
      "authHeader": "Bearer-securetoken",
      "isEnabled": true,
      "createdAt": 1760208000000,
      "updatedAt": 1760208600000,
      "deletedAt": null
    }
  ]
}

Status Codes

HTTPDescription
200Configurations listed
401Invalid credentials
403IP not allowlisted
404No configurations found
500Internal error