Retrieve a user
GET
/v1/users/{id}Retrieve a user object using the ID specified in the request path.
Request
Path Params
id
string
required
Request samples
Responses
200 Success - Retrieve a user(200)
200 Success - Retrieve a user
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
avatar_url
null
optional
Example:
null
id
string
optional
Example:
6794760a-1f15-45cd-9c65-0dfe42f5135a
name
string
optional
Example:
Aman Gupta
object
string
optional
Example:
user
person
object
optional
email
string
optional
Example:
XXXXXXX@makenotion.com
type
string
optional
Example:
person
Example200 Success - Retrieve a user
{
"avatar_url": null,
"id": "6794760a-1f15-45cd-9c65-0dfe42f5135a",
"name": "Aman Gupta",
"object": "user",
"person": {
"email": "XXXXXXX@makenotion.com"
},
"type": "person"
}
Last modified: 2 years ago