[{"label":"Latest (6.4.0)","version":"latest"}]
vrealize-network-insight-api

Share Pinboard

Description

Share Pinboard with users and LDAP/vIDM groups. Only admin and member users can perform this action

Request

Request

URL

URL


put
https://vrni.example.com/api/ni/pinboards/{id}/share
Copy

Path Parameters

Path Parameters

string
id Required

The Entity ID of object requestion information on


Request Body

Request Body

SharePinboardRequest of type(s) application/json Required

Share pinboard with given users and groups

{
    "groups_read_access": [
        "CN=Dev,CN=Users,DC=vrni,DC=com"
    ],
    "groups_write_access": [
        "CN=HR,CN=Users,DC=vrni,DC=com"
    ],
    "users_read_access": [
        "admin1@vmware.com",
        "user@vmware.com"
    ],
    "users_write_access": [
        "admin1@vmware.com",
        "user@vmware.com"
    ]
}
array of string
groups_read_access Optional

List of groups with read privilege for the pinboard


array of string
groups_write_access Optional

List of groups with read and write privilege for the pinboard


array of string
users_read_access Optional

List of users with read privilege for the pinboard


array of string
users_write_access Optional

List of users with all privileges for the pinboard

Authentication

Authentication

This operation uses the following authentication methods.

Response

Response

Response Body

Response Body

200 OK

Returns PinboardResponse of type(s) application/json
{
    "create_timestamp": 156789876,
    "description": "This is the pinboard description",
    "groups_read_access": [
        "cn=administrators"
    ],
    "groups_write_access": [
        "CN=HR,CN=Users"
    ],
    "id": "18799:10002:211561153588",
    "last_updated_timestamp": 156789876,
    "name": "Pinboard Name",
    "owner": "admin@local",
    "users_read_access": [
        "user1@vmware.com",
        "user3@vmware.com"
    ],
    "users_write_access": [
        "user@vmware.com",
        "user2@vmware.com"
    ]
}
string
create_timestamp Optional

Create timestamp for pinboard


string
description Optional

Description of the pinboard


array of string
groups_read_access Optional

LDAP/VIDM groups with read privilege of the pinboard


array of string
groups_write_access Optional

LDAP/VIDM groups with read and write privilege of the pinboard


string
id Optional

Entity Identifier for a pinboard


string
last_updated_timestamp Optional

Last update timestamp for pinboard


string
name Optional

Descriptor or identifier for particular pinboard.


string
owner Optional

User email of the pinboard owner


array of PinAssociation
pins Optional

Pins associated with Pinboard


array of string
users_read_access Optional

List of users with read privilege for the pinboard


array of string
users_write_access Optional

List of users with read and write privilege for the pinboard

Errors

Errors

ApiError
400

Bad Request


ApiError
401

Unauthorized


ApiError
500

Internal Error

Code Samples

Code Samples

cURL Command

curl -X PUT -H "Content-Type: application/json" -d '{"groups_read_access":["CN=Dev,CN=Users,DC=vrni,DC=com"],"groups_write_access":["CN=HR,CN=Users,DC=vrni,DC=com"],"users_read_access":["admin1@vmware.com","user@vmware.com"],"users_write_access":["admin1@vmware.com","user@vmware.com"]}' https://vrni.example.com/api/ni/pinboards/{id}/share


[{"label":"Latest (6.4.0)","version":"latest"}]
vrealize-network-insight-api
Feedback

Was this page helpful?