For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Sign inBook a demo
  • Home
    • Introduction
    • How it Works
    • Integrating your BillPay / AP
  • Validate
    • GETFind Validation Jobs
    • POSTCreate Validation Job
    • GETGet Validation Job
  • Process
    • GETFind Process Jobs
    • POSTCreate Process Job
    • GETGet Process Job
  • Webhooks
    • POSTPayment Gateway Validation Job Completed
    • POSTPayment Gateway Process Job Completed
Logo
Sign inBook a demo
Webhooks

Payment Gateway Validation Job Completed

Payload
1{
2 "eventType": "paymentGateway.validation.completed",
3 "jobId": "pgv_8f86116b-3b4d-4ded-99ef-3bc929d8c33c",
4 "data": {
5 "jobStatus": "success",
6 "createdAt": "2024-01-01T00:00:00Z",
7 "jobId": "pgv_8f86116b-3b4d-4ded-99ef-3bc929d8c33c",
8 "updatedAt": "2024-01-01T00:00:00Z",
9 "card": {
10 "eligibility": "ACCEPTED",
11 "fee": {
12 "type": "percentage",
13 "value": 2.5
14 }
15 },
16 "gatewayAmount": 155.5,
17 "invoiceAmount": 150.75,
18 "paymentGatewayUrl": "https://www.payment-gateway.com/invoice/pgv_8f86116b-3b4d-4ded-99ef-3bc929d8c33c",
19 "vendorName": "Acme Corporation"
20 }
21}
A payment gateway validation job has completed processing
Was this page helpful?
Previous

Payment Gateway Process Job Completed

Next
Built with

Payload

The payload of this webhook request is an object.
eventTypestringRequired
The type of the event.
jobIdstringRequired
The ID of the payment gateway validation job that completed.
dataobjectRequired

Response

200
any
Return a 200 status to indicate that the data was received successfully.