Get a user
Get /users/{id}
URL parameters:
Name | Description | Type | Mandatory |
---|---|---|---|
id | User Id | String | Yes |
Response:
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 | { "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" } } |