Update a transform
PUT {{baseUrl}}/transforms/:id
Replaces the transform specified by the given ID with the transform provided in the request body. Only the attributes
field is mutable. Attempting to change other properties (ex. name
and type
) will result in an error.
A token with transform write authority is required to call this API.
Request Body
{"name"=>"Timestamp To Date", "type"=>"dateFormat", "attributes"=>{"inputFormat"=>"MMM-dd-yyyy, HH:mm:ss.SSS", "outputFormat"=>"yyyy/dd/MM"}}
HEADERS
Key | Datatype | Required | Description |
---|---|---|---|
Content-Type | string | ||
Accept | string |
RESPONSES
status: OK
{"id":"2cd78adghjkja34jh2b1hkjhasuecd","name":"Timestamp To Date","type":"dateFormat","attributes":{"inputFormat":"MMM-dd-yyyy, HH:mm:ss.SSS","outputFormat":"yyyy/dd/MM"},"internal":false}