action clarify_get_v1_bundles_bundle_id_insights { label: "Get bundle insights" description: "Gets the insights for a bundle.

URLs of the available insights for the bundle are in the _links object, with the link relations (keys) of the format insight:insight_name.

Documentation on the insights available and the data returned can be found at http://docs.clarify.io/insights/" provider: clarify method: GET path: "/v1/bundles/{bundle_id}/insights" encoding: json input: { type: "object" properties: { bundle_id: { type: "string" } } required: ["bundle_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }