Page tree

Release 6.0.2


Contents:

Scheduled Maintenance: docs.trifacta.com will be offline for maintenance at 3:00pm UTC on Tuesday March 28 for about 15 minutes.

   

For the latest updates on available API endpoints and documentation, see api.trifacta.com.

This is the latest version of the APIs.

Contents:


Retrieve the user permissions to a specified connection.  

For more information on connections, see Connection Types.

Version: v4

Required Permissions

The authenticated user must be an admin.

NOTE: Each request to the Designer Cloud Powered by Trifacta® platform must include authentication credentials. See https://api.trifacta.com/ee/6.0/index.html#section/Authentication.

Request

Request Type: GET

Endpoint:

/v4/connections/<cid>/permissions/
ParameterDescription
<cid>Internal identifier of the connection to retrieve.


Request URI - Example:

/v4/connections/7/permissions/

Request Body:

None.

Response

Response Status Code - Success:  200 - OK

Response Body Example:

[
    {
        "name": "Administrator",
        "email": "admin@trifacta.local",
        "id": 1,
        "connectionpermission": {
            "connectionId": 7,
            "personId": 1,
            "role": "owner"
        }
    },
    {
        "name": "Joe Guy",
        "email": "jguy@example.com",
        "id": 6,
        "connectionpermission": {
            "connectionId": 7,
            "personId": 6,
            "role": "readOnly"
        }
    }
]

 

Reference

PropertyDescription
connectionIdInternal identifier of the connection
personIdInternal identifier of the user who has access to the connection
role

Role assigned to the user for the connection. Values:

  • owner - creator and owner of the connection
  • readOnly - user with whom the connection has been shared. Users cannot modify the connection.

For more information, see API Connections Get v4.

This page has no comments.