List all users
List all your users
GET https://sandbox-api.nanol.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": 10
},
"data": [
{
"uuid": "50d6c5df-abd6-43de-9c48-d85146e96c11",
"first_name": "Fairlender Inc",
"middle_name": null,
"last_name": null,
"dwolla_customer_url": null,
"user_type": "BUSINESS",
"start_date": "2012-07-04",
"website": null,
"entity": "CORPORATION",
"industry": null,
"email": "[email protected]",
"phone": "+237678887676",
"address": {
"line_1": "77 Geary Street",
"line_2": null,
"line_3": null,
"zip": "94108",
"city": "Douala",
"region": "LT",
"country": "CAMEROON"
},
"key_people": [
{
"uuid": "3189f45f-bdb1-4115-ab41-dde4d6207edb",
"first_name": "Blair",
"last_name": "Cassidy",
"middle_name": "Dufresne",
"title": "BENEFICIARY",
"phone": "+237676672346",
"email": "[email protected]",
"citizenship": "CM",
"address": {
"line_1": "161 Stansfield Dr",
"city": "Douala",
"region": "LT",
"zip": "18092",
"country": "CAMEROON"
}
}
]
},
{. . .}
]
}Last updated