Currently, I’m using the webhooks/resend/{txId} API, but after I set the boolean values for the body parameters, it only sends once. I want this API to keep resending until it meets certain conditions. I’m considering setting the following values as hardcoded:
resendCreated := true
resendStatusUpdated := false
Can someone give me an explaination about this two param.
Hi @hisyamdarwis, the API is designed to re-send the transaction webhook only once. Programming it to retry could run the risk of hitting the rate limit.
Those two params are detailed in the transaction webhook object
resendCreated - resends the TRANSACTION_CREATED type webhooks resendStatusUpdated - resends the TRANSACTION_STATUS_UPDATED type webhooks.