LogoLogo
Useful links
  • Home
  • Product guides
  • API
  • SDKs
  • Overview
  • CORE API
    • Authentication
    • Available resources
      • Transaction
      • Onboarding
      • Profile
      • Synchronous services
        • OCR Sync
        • Basic Data Sync (Individual)
    • Transaction details
      • Services
        • Document OCR
        • Documentscopy
        • Face Liveness
        • Facematch
        • Facial Biometrics
        • Private Faceset
        • Shared Faceset
        • Document Liveness
      • Background check
        • Data structure
        • KYC
          • Driver
          • Financial
          • Labor
          • Register data
          • Relationships
          • Risk
        • KYB
          • Financial
          • Labor
          • Register data
          • Risk
        • Vehicle
          • Register data
      • Validation rules
      • Manual reprovals
    • Webhooks
      • Transaction
      • Profile
      • Face authentication
  • MOBILE API
    • Authentication
    • Available resources
      • Face liveness (deprecated)
      • Face registration (deprecated)
      • Face authentication (deprecated)
    • Response signature
  • GLOBAL API
    • Authentication
    • Available resources
      • Services
        • Company search
        • Company record
        • Basic Data Sync (Individual)
        • Sanctions
      • Orchestrations
        • Transactions
          • Services
            • KYB
              • Credit Report
              • Business Identity
            • KYC
              • Adverse Media
              • PEPs
              • Sanctions
              • Warnings
              • Global identity verification
              • Global identity double verification
            • DOC ID
              • Global Document Verification
      • Onboardings
        • Links
    • Webhooks
  • SMART AUTH API
    • Authentication
    • Available resources
      • Authentications
      • Create identity
  • Joint resolution 6 API
    • Authentication
    • Available resources
      • Suspected fraud creation
      • Suspected fraud query
      • Suspected fraud update
      • Suspected fraud deletion
    • Using mTLS
    • Changelog
LogoLogo

2025 © Caf. - All rights reserved

On this page
  1. Joint resolution 6 API
  2. Available resources

Suspected fraud update

Last updated 1 month ago

The suspected fraud update updates a suspected fraud status.

Options

As demonstrated in the example request, in the URL a path parameter must be passed and PATCH HTTP method used. The token parameter must be a UUID that's identify a Suspected Fraud, this token can be retrieved on the Suspected Fraud Query passing query mode as LOCAL or DELETED. In the data object you should include de Suspected Fraud Status must be passed using the status property. Possible status values ares:

  • CONFIRMED_FRAUD: indicates a confirmed fraud occurrence;

  • SUSPECTED_FRAUD: indicates a suspected fraud occurrence.

  • PATCHSuspected fraud update
  • Options

Suspected fraud update

patch
Authorizations
Path parameters
tokenstring · uuidRequired
Body
statusstring · enumRequiredPossible values:
Responses
200
Suspected fraud update occurred successfully.
application/json
400
Suspected fraud update failed due to a bad request.
application/json
401
Unauthorized.
application/json
422
Suspected fraud update failed, but the request was processed by the API, just not by the peer.
application/json
500
Suspected fraud update failed due to an unexpected error in the API.
application/json
503
Suspected fraud update failed due to an unexpected error in the Peer.
application/json
patch
PATCH /fraud/suspected-fraud/{token} HTTP/1.1
Host: api.prd.combateafraude.com
Authorization: Bearer JWT
Content-Type: application/json
Accept: */*
Content-Length: 28

{
  "status": "CONFIRMED_FRAUD"
}
{
  "message": "text",
  "requestStatus": {
    "status": "SUCCESS",
    "token": "123e4567-e89b-12d3-a456-426614174000"
  }
}