Home
Home
  1. 🔎 Screening API
  • 🚀 Getting Started
  • 🔎 Screening API
    • Overview
    • Blacklist Matching Logic
    • Blockchain Analysis
      POST
    • Individuals Analysis
      POST
    • Organizations Analysis
      POST
    • Screening Entities Summary Analysis
      POST
    • Create BlackList
      POST
    • Get All BlackList Records
      GET
    • Get Blacklist Record by ID
      GET
    • Delete Blacklist Record by ID
      DELETE
    • Update Blacklist Record by ID
      PATCH
    • Update Blacklist Settings Account
      PATCH
  • 🌊 Flow API
    • Overview
    • Flow Step: Identity Verification
    • Flow Step: Onboarding Individual
    • Flow Step: Onboarding Organization
    • 📡 Endpoints
      • Authentication token
      • Get Flow Instance
      • Get File from Flow Instance
      • Identity: Get Details
      • Identity: Get Files
      • Identity: Update Status
      • Onboarding: Get Details
      • Onboarding: Get File
      • Onboarding: Get Multiple Files
      • Onboarding: Update Status
    • 📤 Webhooks
      • Webhooks Overview
      • Flow
      • Identity Verification
      • Onboarding Individual
      • Onboarding Organizations
      • Identity Verification by Onboarding
  • 💸 Transaction API
    • 🔑 Authentication
    • Overview
    • Transaction Analysis
    • Transaction Status
    • Document Types
    • Cryptocurrencies
    • Diagram
    • 📤 Webhooks
  • 📡 Endpoints
    • Create operation
    • Get operation
    • Get valid document types
    • Get valid coins
  • 📂 Resources
    • Concept Details
    • Enum Validation
Home
Home
  1. 🔎 Screening API

Update Blacklist Record by ID

Developing
PATCH
https://app.rillis.io/api/v1/black-list-api/{id}
Modify the details or status of an existing blacklist entry. This allows you to adjust identifying fields, enable/disable the record, or apply changes based on new information without deleting the entry.

Request

Path Params

Body Params application/jsonRequired

Examples

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PATCH 'https://app.rillis.io/api/v1/black-list-api/' \
--header 'Content-Type: application/json' \
--data-raw '{
    "is_active": false,
    "reason": "other reason",
    "client_id": "1MpwlwE11dHixJpB8Ksy0sfVON1019EbqRb0+LvSxxx=",
    "client_secret": "ee592d0c880795f14308084088381150f0862a1dce12cf9cea60345ca3671083c708363cc4296a3451afb097b38xxx"
}'
Response Response Example
{
    "entity_type": "COMPANY",
    "is_active": false,
    "reason": "other reason",
    "company": {
        "name_company": "BLACK LIST COMPANY",
        "country_constitution": "CHL",
        "document_type": "CL-RUT",
        "document_number": "33333333"
    },
    "registered_in": 1762373235041,
    "id": "690bae73e25867a4eff205c5"
}
Modified at 2025-12-16 00:21:46
Previous
Delete Blacklist Record by ID
Next
Update Blacklist Settings Account
Built with