Webhook
Last updated
Last updated
Webhooks can be configured in the settings of your Payrexx merchant account. Find this in the navigation under "Webhooks".
Submit an accessible URL / IP address where you receive and process the data
Decide whether webhooks should be retried in case of an error at the processing server
Choose between two content types
Normal (PHP-Post): application/x-www-form-urlencoded
JSON: application/json and is best used for all different applications
When activated, the Payrexx software tries to send the webhook 10 times until a successful response is received.
These attempts will be fired at the following intervals:
ASAP (max. 1 - 1.5 minutes after the first synchronous attempt)
15 minutes after the last attempt
1 hour after the last attempt
2 hours after the last attempt
4 hours after the last attempt
24 hours after the last attempt
24 hours after the last attempt
24 hours after the last attempt
24 hours after the last attempt
24 hours after the last attempt
The server needs to send a response within 20 seconds. Otherwise, the request times out. The log shows HTTP status 0 and response body "Operation timed out after 20000 milliseconds with 0 bytes received".
Depending on the information you want to track in your system, please go to the object specification:
Subscription
Currently, we only have an example written in PHP.
For an integration into a webshop, you will create a . After the transaction has been performed, you will get a notification request to your server. You can identify the transaction by paymentLinkId or referenceId in .
The data will be either sent in or as .
Download full PHP example with a corresponding MySQL database: