Skip to main content
GET
https://checkout.dintero.com/v1
/
callbacks
/
collector
/
antifraud
checkout_sid_collector_callback_post
curl --request GET \
  --url https://checkout.dintero.com/v1/callbacks/collector/antifraud
import requests

url = "https://checkout.dintero.com/v1/callbacks/collector/antifraud"

response = requests.get(url)

print(response.text)
const options = {method: 'GET'};

fetch('https://checkout.dintero.com/v1/callbacks/collector/antifraud', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://checkout.dintero.com/v1/callbacks/collector/antifraud"

req, _ := http.NewRequest("GET", url, nil)

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://checkout.dintero.com/v1/callbacks/collector/antifraud")
.asString();
{
  "error": {
    "message": "<string>",
    "code": "<string>",
    "errors": [
      {}
    ]
  }
}
{
"error": {
"message": "<string>",
"code": "<string>",
"errors": [
{}
]
}
}

Query Parameters

InvoiceNo
string
required
OrderNo
string
required
InvoiceStatus
integer
required

Response

callback handled

Last modified on July 10, 2026