Page tree

Release 6.4.2


Contents:

   

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

This is the latest version of the APIs.

Contents:


Modify the specified publications object.

Version:  v4

Relevant terms:

Term Description
outputObjects An outputObject is a definition of one or more types of outputs and how they are generated. It must be associated with a recipe.

NOTE: An outputObject must be created for a recipe before you can run a job on it. One and only one outputObject can be associated with a recipe.

writeSettings A writeSettings object defines file-based outputs within an outputObject. Settings include path, format, compression, and delimiters.
publications A publications object is used to specify a table-based output and is associated with an outputObject. Settings include the connection to use, path, table type, and write action to apply.

Required Permissions

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

Request

Request Type: PUT

Endpoint:

/v4/publications/<id>

Request URI - Example:

/v4/publications/3/

Request Body:

The following changes the path, table name, and action applied on the table for the specified publication. For more information on the properties, see API Publications Get v4.

{
    "path": [
        "default"
    ],
    "tableName": "MyTable-DropAndLoad",
    "action": "dropAndLoad"
}

Response

Response Status Code - Success:  200 - OK

Response Body Example:

{
    "id": 3,
    "updater": {
        "id": 1
    },
    "updatedAt": "2018-11-08T21:11:54.880Z"
}

Reference

For more information on the properties of the publications object, see API Publications Get v4.

This page has no comments.