Cloud Elements Version 2.172-2.176
DELETE /files
endpointYou can use DELETE /files
to delete pages from OneNote notebooks.
You can now use LIKE in CEQL and query on custom fields. Here are some examples:
/file/comments
endpointsWe added the following comments endpoints to the /files resource:
GET /campaigns/{id}/open-details
endpointYou can now get detailed information about any campaign emails that were opened by a list member.
When you transform data from a field that includes sub resources, the common resource appears in the API docs and can make requests to the resource. For example, in the MailChimp element the listsContacts
resource is nested in Cloud Elements as lists/{id}/contacts
. If you map a field from MailChimp's listsContacts
resource to your common resource and add the common resource to the API docs, the request appears as lists/{id}/yourCommonResource
.
Some elements such as HubSpot, Marketo, Eloqua, and the Salesforce elements did not previously support uploading bulk data via JSON. You can now upload files in JSON format ({"format" : "json"}
). Each JSON object should be on a new line or can be an array of JSON objects.
When you create a Formula as a Resource you can specify status codes and descriptions. To include a status code and result in the response to a FaaR request:
Include a script like the following in the step:
done({
statusCode: xxx
result: {
label: 'message'
}
})
Save the step.
Property | Description |
---|---|
statusCode | The status code that you want to return in the response, such as 200 , 401 , or 502 . The value must be a valid status code. |
result | The body of the response which can be anything related to the status code such as an array of objects, a single object, or text. The example above includes an array containing a key value pair with a label and a message. |