List users
Get /users
Parameters:
None
Response:
Node with users:
Name | Description | Type | ||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
id | User Id | String | ||||||||||||||||||
username | Email address of the user | String | ||||||||||||||||||
civility | 1: Mr ; 2: Ms | Int | ||||||||||||||||||
firstName | User's firstname | String | ||||||||||||||||||
lastName | User's last name | String | ||||||||||||||||||
customerType | 0: particular ; 1: professionnal | String | ||||||||||||||||||
company | Company | String | ||||||||||||||||||
activity | Activity | String | ||||||||||||||||||
job | Job | String | ||||||||||||||||||
address | Address | String | ||||||||||||||||||
address2 | Address (after) | String | ||||||||||||||||||
zipCode | Zip code | String | ||||||||||||||||||
city | City | String | ||||||||||||||||||
country | Country | String | ||||||||||||||||||
phone | Phone | String | ||||||||||||||||||
mobile | Mobile | String | ||||||||||||||||||
settings |
Tipimail settings of the user
|
Array |
Programming language:
Response exemple:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | [ { "id" : "5565re4gre4ht6h54tgregre" , "username" : "email1@example.com" , "civility" : 1, "firstName" : "Firstname1" , "lastName" : "Lastname1" , "customerType" : 1, "company" : "Company1" , "activity" : "Activity1" , "job" : "Job1" , "address" : "Address1" , "address2" : "Address11" , "zipCode" : "Zipcode1" , "city" : "City1" , "country" : "Country1" , "phone" : "00-00-00-00-01" , "mobile" : "00-00-00-00-11" , "settings" : { "newsletter" : true , "language" : "EN" , "dateFormat" : "MM/DD/YYYY" , "timeFormat" : "HH:mm:ss" , "timezone" : "Europe/Paris" } }, { "id" : "5565re4gre4ht6h54tgregre" , "username" : "email2@example.com" , "civility" : 2, "firstName" : "Firstname2" , "lastName" : "Lastname2" , "customerType" : 2, "company" : "Company2" , "activity" : "Activity2" , "job" : "Job2" , "address" : "Address2" , "address2" : "Address22" , "zipCode" : "Zipcode2" , "city" : "City2" , "country" : "Country2" , "phone" : "00-00-00-00-02" , "mobile" : "00-00-00-00-22" , "settings" : { "newsletter" : true , "language" : "EN" , "dateFormat" : "MM/DD/YYYY" , "timeFormat" : "HH:mm:ss" , "timezone" : "Europe/Paris" } } ] |