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

Duplicate Pinboard

Description

Duplicate a pinboard. Only admin and member users can perform this action

Request

Request

URL

URL


post
https://vrni.example.com/api/ni/pinboards/{id}/duplicate
Copy

Path Parameters

Path Parameters

string
id Required

The Entity ID of object requestion information on


Request Body

Request Body

DuplicatePinboardRequest of type(s) application/json Required

Duplicate pinboard request

{
    "description": "This is a Pinboard",
    "name": "Pinboard Name"
}
string
description Optional

Description of the pinboard


string
name Optional

Name of the pinboard


boolean
retain_access_permissions Optional

Should pinboard permissions be copied while duplicating the pinboard.

Authentication

Authentication

This operation uses the following authentication methods.

Response

Response

Response Body

Response Body

201 Created

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 POST -H "Content-Type: application/json" -d '{"description":"This is a Pinboard","name":"Pinboard Name"}' https://vrni.example.com/api/ni/pinboards/{id}/duplicate


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

Was this page helpful?