Get KYC Types

This endpoint is used to get an Array of KYC types (Business, Individual). This provided the _id of the KYC that would be used when creating a KYC request

GET https://fuspay-kyc-prod-df741b092e53.herokuapp.com/api/v1/kyc_type

Response Body

[
  {
    "_id": "6564dc907049168cd3eeab8e",
    "flow_id": "6551e7065c98f8001cee0fc2",
    "name": "Business",
    "created_at": "2023-11-27T18:14:40.904Z",
    "updated_at": "2023-11-27T18:14:40.904Z",
    "__v": 0
  }
]

Response Body Description

Key
Type
Description

_id

String

This is the id that represents the KYC (Business, Individual) .

flow_id

String

The flow id represents the specific flow of the KYC. Eg KYC for individuals can have different flows

name

String

This describes the kind of KYC e.g. Business.

Last updated