List all users

List all your users

GET https://sandbox-api.stilt.com/v1/users

Returns a dictionary with a data property that contains an array of up to limit users. Each entry in the array is a separate user object. This request should never return an error.

{
    "pagination": {
        "offset": 0,
        "limit": 25,
        "total": 36
    },
    "data": [
        {
            "uuid": "017916b5-a943-48ae-873c-3ef08de23c37",
            "first_name": "Blair",
            "middle_name": "Cassidy",
            "last_name": "Dufresne",
            "citizenship": "US",
            "dwolla_customer_url": null,
            "email": "bcdufresne5000@gmail.com",
            "phone": "6166723456",
            "address": {
                "line_1": "5161 Stansfield Dr",
                "line_2": null,
                "line_3": null,
                "zip": "18092",
                "city": "Zionsville",
                "state": "PA",
                "country": "UNITED STATES"
            }
        },
        {...},
        {...}
    ]
}

Be sure to omit `Content-Type': 'application/json' from the header of this request to avoid a 500 error

Last updated