Home
Home
  1. 📡 Endpoints
  • 🚀 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
      POST
    • Get operation
      GET
    • Get valid document types
      GET
    • Get valid coins
      GET
  • 📂 Resources
    • Concept Details
    • Enum Validation
Home
Home
  1. 📡 Endpoints

Get valid document types

GET
/api/v1/resources/validation/document-types
This endpoint returns the valid document types by country, supporting two categories: individuals ("person") and legal entities ("company").

Request

Query Params

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://prod.your-api-server.com/api/v1/resources/validation/document-types?client_id&client_secret'
Response Response Example
{
  "person": [
    {
      "code": "CHL",
      "name": "CHILE",
      "locTypes": [
        {
          "type": "CL-PASS",
          "name": "PASSPORT NUMBER"
        }
      ]
    }
  ],
  "company": [
    {
      "code": "CHL",
      "name": "CHILE",
      "locTypes": [
        {
          "type": "CL-RUN",
          "name": "ROL UNICO NACIONAL"
        }
      ]
    }
  ]
}
Modified at 2025-05-29 15:13:44
Previous
Get operation
Next
Get valid coins
Built with