Jeff Program Testing
  1. USER
Jeff Program Testing
  • Overview
  • ACCOUNT
    • Get Account
      GET
  • USER
    • Get Users
      GET
    • Get User
      GET
    • Create User
      POST
    • Update User
      POST
    • Delete User
      DELETE
  1. USER

Get Users

GET
/users
To get detailed information of customers by batches in terms of page number, sorted by time.

请求参数

Query 参数

Header 参数

请求示例代码

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET '/users?page=&per_page=' \
--header 'x-api-key: DmxPFlWX1H*Ag$IuHOaNKQwHp$JWa^l93oKuOpu4Xg5zYmWPER%#P34&LUwD!B!9'

返回响应

🟢200Success
application/json
Body

示例
{
    "rc": 100,
    "rm": "OK",
    "users": [
        {
            "_id": "64f5313f35e6a55fcccccccc",
            "acct_id": "64f5313f35e6a55faaaaaaaa",
            "funnel_id": "64f5313f35e6a55faaaaaaac",
            "name": "Peter Chan",
            "email": "peter.chan@gmail.com",
            "country_code": "852",
            "mobile": "98765432",
            "gender": "M",
            "address": "Address 123",
            "birthday": {
                "byear": "2000",
                "bmonth": "01",
                "bday": "10"
            },
            "visitor_id": "",
            "join_medium": "FB",
            "user_tags": [
                {
                    "value": "Testing"
                }
            ],
            "country_id": "CR-HK",
            "status": "IMP",
            "created": "2023-10-19",
            "modified": "2023-10-19"
        },
        {
            "_id": "64f5313f35e6a55fcccccccd",
            "acct_id": "64f5313f35e6a55faaaaaaab",
            "name": "Mary Chan",
            "email": "mary.chan@gmail.com",
            "country_code": "852",
            "mobile": "98765433",
            "gender": "F",
            "address": "Address 124",
            "birthday": {
                "byear": "2000",
                "bmonth": "03",
                "bday": "10"
            },
            "visitor_id": "",
            "join_medium": "FB",
            "user_tags": [
                {
                    "value": "Testing"
                }
            ],
            "country_id": "CR-HK",
            "status": "IMP",
            "created": "2023-10-19",
            "modified": "2023-10-19"
        }
    ]
}
修改于 2023-12-13 07:04:03
上一页
Get Account
下一页
Get User
Built with