GET
/
webhook-endpoints
curl --request GET \
  --url https://api.syntage.com/webhook-endpoints \
  --header 'X-API-Key: <api-key>'
{
  "@context": "<string>",
  "@id": "<string>",
  "@type": "hydra:Collection",
  "hydra:member": [
    {
      "@id": "/webhook-endpoints/91106968-1abd-4d64-85c1-4e73d96fb997",
      "@type": "WebhookEndpoint",
      "id": "e0a24894-7fbf-48ae-bfb0-efaae30a6319",
      "url": "https://example.com/endpoint",
      "signingSecret": "54471a278d46c86ec6cd365983552a28",
      "events": [
        "credential.created",
        "credential.updated"
      ],
      "enabled": true,
      "contentType": "application/ld+json",
      "createdAt": "2020-01-01T12:15:00.000Z",
      "updatedAt": "2020-01-01T12:15:00.000Z"
    }
  ],
  "hydra:view": {
    "@id": "<string>",
    "@type": "hydra:PartialCollectionView",
    "hydra:next": "/entity/2a15f539-3251-48e1-aaeb-a154dc9c6edb/resource?id[lt]=9b8e5365-0b36-45f5-9c76-fbe439632367",
    "hydra:last": "/entity/2a15f539-3251-48e1-aaeb-a154dc9c6edb/resource?id[gt]=9b8e5365-0b36-45f5-9c76-fbe439632367"
  },
  "hydra:search": {
    "@type": "<string>",
    "hydra:template": "<string>",
    "hydra:variableRepresentation": "<string>",
    "hydra:mapping": [
      {
        "@type": "<string>",
        "variable": "<string>",
        "property": "<string>",
        "required": true
      }
    ]
  }
}

Authorizations

X-API-Key
string
header
required

Your API key is available in the Production and Sandbox dashboards.

Query Parameters

url
string

The URL of the webhook endpoint

Example:

"https://example.com/endpoint"

events
enum<string>

Event name

Available options:
credential.created,
credential.updated,
link.created,
link.updated,
link.deleted,
extraction.created,
extraction.updated,
invoice.created,
invoice.updated,
invoice_payment.created,
invoice_payment.updated,
invoice_line_item.created,
invoice_line_item.updated,
tax_return.created,
tax_return.updated,
export.created,
export.updated,
tax_status.created,
tax_status.updated,
tax_compliance_check.created,
tax_compliance_check.updated,
tax_retention.created,
tax_retention.updated,
electronic_accounting_record.created,
electronic_accounting_record.updated,
file.created,
rpc_entidades.created,
rpc_entidades.updated,
rpc_acto.created,
rpc_acto.updated,
rpc_socios.created,
rpc_socios.updated,
rug_garantia.created,
rug_garantia.updated,
buro_de_credito_report.created,
buro_de_credito_report.updated
enabled
boolean

Webhook endpoint availability

Example:

true

id[lt]
string

The collection cursor pointer to the next page

id[gt]
string

The collection cursor pointer to the previous page

itemsPerPage
integer
default:20

The number of items per page

Required range: 1 <= x <= 1000

Response

200
application/ld+json

Webhook endpoint collection response

The response is of type object.