Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Checkout
cURL
curl --request GET \ --url https://checkout.dintero.com/v1/events/gateways/collector/idp/signin
import requestsurl = "https://checkout.dintero.com/v1/events/gateways/collector/idp/signin"response = requests.get(url)print(response.text)
const options = {method: 'GET'};fetch('https://checkout.dintero.com/v1/events/gateways/collector/idp/signin', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
package mainimport ( "fmt" "net/http" "io")func main() { url := "https://checkout.dintero.com/v1/events/gateways/collector/idp/signin" 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/events/gateways/collector/idp/signin") .asString();
Result from authorization
Contact support