Documentation
Feedback
Guides
API Reference

API Reference
Filter By
Post
Get
Put
Delete
Patch

Anti-fraud Provider API

Onboarding guide

Check the new Payments onboarding guide. We created this guide to improve the onboarding experience for developers at VTEX. It assembles all documentation on our Developer Portal about Payments and is organized by focusing on the developer's journey.

The Anti-fraud Provider Protocol is a set of definitions to help you integrate your anti-fraud service API into VTEX platform.

To achieve this, you need to implement a web API (REST) following the specifications described in this documentation.

You can also access our template on GitHub to help you quickly develop your anti-fraud connector using the Anti-fraud Provider Protocol and VTEX IO.

To learn more about the Anti-fraud Provider Protocol, check our developer guide.

Anti-fraud Provider API Index

Anti-fraud Flow

OAuth Flow

  1. POST Retrieve token
  2. GET Redirect
  3. GET Return to VTEX
  4. GET Get credentials

Endpoints

Anti-fraud Flow

SummaryMethodPath
Send anti-fraud pre-analysis data (optional)POST/pre-analysis
Send anti-fraud dataPOST/transactions
Update anti-fraud transactions (optional)PUT/transactions/{transactionId}
List anti-fraud provider manifestGET/manifest
Get anti-fraud statusGET/transactions/{transactions.id}
Stop anti-fraud analysis (optional)DELETE/transactions/{transactions.Id}

OAuth Flow

SummaryMethodPath
1. Retrieve tokenPOST/authorization/token
2. RedirectGET/redirect
3. Return to VTEXGET/authorizationCode
4. Get credentialsGET/authorization/credentials

Loading API specification...