userGet All app’s user

GET /users

Overview

Retrieves a list of all users associated with a specific application.

This endpoint is typically used by applications that need to manage or analyze their user base.

Typical use cases

  • Listing all users registered through a specific app

  • Performing bulk analysis or reporting

  • Managing users in an admin dashboard

Name
Value

Content-Type

application/json

Authorization (API Key)

Bearer <API Key>

Response

{
    "message": "fetch resource successfully",
    "data": [
        {
            "klaim_id": "1753306133860_A36dL",
            "user_id": "1753306133860_A36dL",
            "email": "test@email.com",
            "name": "tester",
            "credit_balance": 0,
            "created_at": 1753306133860,
            "acquisition_source": "api"
            "metadata": {
                "test": "field"
            }
        },
    ],
    "lastKey": {
        "prefix_app_id": "string".
	"type_id": "string"
    }
}

Attributes

Attribute
type
Description

acquistion_source

string

Indicates how the user was acquired api : API integration promotion: promotion member_manual: manual member creation (dashboard)

metadata

Object

A set of custom key-value pairs to be stored in the user’s profile.

More description

starting_after

Object

A cursor to use in pagination. Show child attributes

Last updated