GET
/
onboarding
/
api
/
v1
/
users
/
all
Get All Users
curl --request GET \
  --url https://api.carbnconnect.com/onboarding/api/v1/users/all \
  --header 'x-api-key: <api-key>'
[
  {
    "id": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
    "status": "under_review",
    "documents": [
      {
        "name": "national_id",
        "type": "identity_front"
      },
      {
        "name": "national_id",
        "type": "identity_back"
      },
      {
        "name": "steuer_id",
        "type": "tax_document"
      }
    ],
    "address": {
      "line1": "123 Main Street",
      "line2": null,
      "city": "City Name",
      "country": "DEU",
      "region": null,
      "sub_division": "ST",
      "postal_code": "12345"
    },
    "first_name": "John",
    "last_name": "Doe",
    "email_address": "user@example.com",
    "phone_number": "+1XXXXXXXXXX",
    "date_of_birth": "YYYY-MM-DD",
    "rejection_reasons": null,
    "requirements": null
  }
]

Authorizations

x-api-key
string
header
required

API key for authentication. Must be included in the x-api-key header.

Response

List of all users retrieved successfully

List of all users

id
string<uuid>

Unique user identifier

Example:

"xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"

status
enum<string>

Current user status. under_review: Initial status when user is created (default). active: User has been approved and verified. paused: User account is temporarily paused. rejected: User has been rejected during KYC process. offboarded: User has been removed/offboarded from the system. incomplete: User profile is missing required information.

Available options:
under_review,
active,
rejected,
offboarded,
incomplete
Example:

"under_review"

documents
object[]

List of uploaded documents (both identity and supporting documents)

Example:
[
{
"name": "national_id",
"type": "identity_front"
},
{
"name": "national_id",
"type": "identity_back"
},
{
"name": "steuer_id",
"type": "tax_document"
}
]
address
object
first_name
string

User's first name

Example:

"John"

last_name
string

User's last name

Example:

"Doe"

email_address
string<email>

User's email address

Example:

"user@example.com"

phone_number
string

User's phone number

Example:

"+1XXXXXXXXXX"

date_of_birth
string<date>

User's date of birth

Example:

"YYYY-MM-DD"

rejection_reasons
object[] | null

Array of rejection reason objects (only populated for rejected users, null otherwise). Each object contains customer-facing reason, timestamp, and internal developer reason.

Example:

null

requirements
string[] | null

List of missing requirements for incomplete users (null when no requirements are missing)

Example:

null