dev-users

Self Post

POST
Gets the authenticated user's information.

Request

This endpoint expects a map from strings to any.

Response

This endpoint returns an object
dev_user
object
POST
1curl -X POST https://api.devrev.ai/dev-users.self \
2 -H "Authorization: <apiKey>" \
3 -H "Content-Type: application/json" \
4 -d '{}'
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}