• About
    • For Developers
  • API Reference
    • Changelog
  • Guides
    • Account creation
    • Agents async API
    • Links
API Referencevistas

POST
https://api.devrev.ai/vistas.get
POST
/vistas.get
1curl -X POST https://api.devrev.ai/vistas.get \
2 -H "Authorization: Bearer <token>" \
3 -H "Content-Type: application/json" \
4 -d '{
5 "id": "VISTA-12345"
6}'
Try it
200Successful
1{
2 "vista": {
3 "created_by": {
4 "display_id": "string",
5 "id": "string",
6 "display_name": "string",
7 "display_picture": {
8 "display_id": "string",
9 "id": "string",
10 "file": {
11 "type": "string",
12 "name": "string",
13 "size": 1
14 }
15 },
16 "email": "string",
17 "full_name": "string",
18 "state": "active"
19 },
20 "created_date": "2023-01-01T12:00:00.000Z",
21 "display_id": "string",
22 "id": "string",
23 "modified_by": {
24 "display_id": "string",
25 "id": "string",
26 "display_name": "string",
27 "display_picture": {
28 "display_id": "string",
29 "id": "string",
30 "file": {
31 "type": "string",
32 "name": "string",
33 "size": 1
34 }
35 },
36 "email": "string",
37 "full_name": "string",
38 "state": "active"
39 },
40 "modified_date": "2023-01-01T12:00:00.000Z",
41 "is_default": true,
42 "name": "string",
43 "shared_with": [
44 {
45 "member": {
46 "display_id": "string",
47 "id": "string",
48 "display_name": "string",
49 "display_picture": {
50 "display_id": "string",
51 "id": "string",
52 "file": {
53 "type": {},
54 "name": {},
55 "size": {}
56 }
57 },
58 "email": "string",
59 "full_name": "string",
60 "state": "active"
61 },
62 "role": {
63 "display_id": "string",
64 "id": "string",
65 "sync_metadata": {
66 "external_reference": "string",
67 "origin_system": "string"
68 }
69 }
70 }
71 ],
72 "items": [
73 {
74 "display_id": "string",
75 "id": "string",
76 "display_name": "string"
77 }
78 ]
79 }
80}
Was this page helpful?
Previous

Delete Vistas Group

Next
Built with
Gets the requested vistas's information.

Headers

AuthorizationstringRequired
Bearer authentication of the form `Bearer <token>`, where token is your auth token.

Request

This endpoint expects an object.
idstringRequiredformat: "id"
The vista's ID.

Response

The response to getting a vista's information.
vistaobject
Represents a collection of DevRev objects.

Errors

Bearer authentication of the form Bearer <token>, where token is your auth token.

Get Vista (POST)