Home
Home
  1. ๐Ÿ’ธTransaction Screening API
  • ๐Ÿš€ Getting Started
  • ๐Ÿ”Ž Screening API
    • Overview
    • Blacklist Matching Logic
    • ๐Ÿ“ก Endpoints
      • Blockchain Analysis
      • Individuals Analysis
      • Organizations Analysis
      • Screening Entities Summary Analysis
      • Create BlackList
      • Get All BlackList Records
      • Get Blacklist Record by ID
      • Delete Blacklist Record by ID
      • Update Blacklist Record by ID
      • Update Blacklist Settings Account
  • ๐ŸŒŠ Flow API
    • Overview
    • Flow Step: Identity Verification
    • Flow Step: Onboarding Individual
    • Flow Step: Onboarding Organization
    • ๐Ÿ“ก Endpoints
      • Authentication token
      • Get Flow Instances
      • Get Flow Instance By Id
      • 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
      • Onboarding: Get Entity by document number
      • Onboarding: Get Entity List by document number
    • ๐Ÿ“ค Webhooks
      • Overview
      • Flow
      • Identity Verification
      • Onboarding Individual
      • Onboarding Organizations
      • Identity Verification by Onboarding
  • ๐Ÿ’ธTransaction Screening API
    • ๐Ÿ”‘ Authentication
    • Overview
    • Transaction Analysis
    • Monitoring & History
    • Document Types
    • Supported Currencies
    • Diagram
    • ๐Ÿ“ค Webhooks
    • ๐Ÿ“ก Endpoints
      • Submit Transaction
      • List Transactions
      • List Document types
      • List Cryptocurrencies
      • Register remitter
      • Register Beneficiary
  • ๐Ÿ“‚ Resources
    • Concept Details
    • Enum Validation
Home
Home
  1. ๐Ÿ’ธTransaction Screening API

๐Ÿ”‘ Authentication

Authentication in this API is performed by sending the client's credentials in the body of the request. You must include the following fields:
client_id: A unique identifier for the client.
client_secret: A shared secret between the client and the server.
These credentials must be provided with every request to the API endpoints to authenticate and authorize the client.

Authentication on Endpoints#

To authenticate a request on any API endpoint, follow these steps:
1.
Include the following properties in the request body:
{
  "client_id": "your_client_id",
  "client_secret": "your_client_secret"
}
Replace your_client_id with the client_id provided by the system and your_client_secret with the corresponding client_secret.
2.
Send the request to the desired endpoint.
If the authentication credentials are valid, you will receive a successful response. Otherwise, you will receive an error code along with a message explaining the issue.

Example Authentication Request#

Below is an example of how to authenticate a request using the client credentials:
Modified atย 2025-05-29 17:02:06
Previous
Identity Verification by Onboarding
Next
Overview
Built with