rev-users

Create

POST
Creates a Rev user for a Rev organization. Rev user can be a customer or a lead of an organization.

Request

This endpoint expects an object.
artifacts
list of stringsOptional
The IDs of the artifacts to associate with the Rev user.
custom_fields
map from strings to anyOptional
Application-defined custom fields.
custom_schema_fragments
list of stringsOptional
The schema fragment IDs associated with the Rev user.
description
stringOptional
Description of the Rev user.
display_name
stringOptional
The user's display name. The name is non-unique and mutable.
email
stringOptional
Email address of the Rev user.
external_ref
stringOptional
External ref is a mutable unique identifier for a user within the Dev organization from your primary customer record. If none is available, a good alternative is the email address/phone number which could uniquely identify the user. If none is specified, a system-generated identifier will be assigned to the user.
phone_numbers
list of stringsOptional
Phone numbers, in E.164 format, of the Rev user.
rev_org
stringOptional
The ID of the Rev organization to which the created Rev user is associated.
tags
list of objectsOptional
Tags associated with the Rev user.

Response

This endpoint returns an object
rev_user
object
POST
1curl -X POST https://api.devrev.ai/rev-users.create \
2 -H "Authorization: <apiKey>" \
3 -H "Content-Type: application/json" \
4 -d '{}'
200
Successful
1{
2 "rev_user": {
3 "id": "id",
4 "artifacts": [
5 {
6 "id": "id"
7 }
8 ],
9 "created_date": "2023-01-01T12:00:00Z",
10 "custom_fields": {
11 "custom_fields": {
12 "key": "value"
13 }
14 },
15 "custom_schema_fragments": [
16 "custom_schema_fragments"
17 ],
18 "description": "description",
19 "display_id": "display_id",
20 "display_name": "display_name",
21 "display_picture": {
22 "id": "id",
23 "display_id": "display_id"
24 },
25 "email": "email",
26 "external_ref": "external_ref",
27 "full_name": "full_name",
28 "is_verified": true,
29 "modified_date": "2023-01-01T12:00:00Z",
30 "phone_numbers": [
31 "phone_numbers"
32 ],
33 "state": "active",
34 "stock_schema_fragment": "don:core:<partition>:devo/<dev-org-id>:custom_type_fragment/<custom-type-fragment-id>",
35 "subtype": "subtype",
36 "tags": [
37 {
38 "tag": {
39 "id": "id",
40 "name": "name"
41 }
42 }
43 ]
44 }
45}