dev-users

Get Post

POST
Gets the requested user's information.

Request

This endpoint expects an object.
id
stringRequired
User ID of the requested Dev user.

Response

This endpoint returns an object
dev_user
object
POST
1curl -X POST https://api.devrev.ai/dev-users.get \
2 -H "Authorization: <apiKey>" \
3 -H "Content-Type: application/json" \
4 -d '{
5 "id": "id"
6}'
Response
1{
2 "dev_user": {
3 "id": "id",
4 "created_date": "2023-01-01T12:00:00Z",
5 "display_id": "display_id",
6 "display_name": "display_name",
7 "display_picture": {
8 "id": "id",
9 "display_id": "display_id"
10 },
11 "email": "email",
12 "external_identities": [
13 {}
14 ],
15 "full_name": "full_name",
16 "modified_date": "2023-01-01T12:00:00Z",
17 "phone_numbers": [
18 "phone_numbers"
19 ],
20 "state": "active"
21 }
22}