action braze_canvas_list { label: "Canvas List" description: "This endpoint allows you to export a list of Canvases, including the name, Canvas API Identifier and associated Tags. The Canvases are returned in groups of 100 sorted by time of creation (oldest to newest by default).\n\n> Archived Canvases will not be included in the API response unless the `include_archived` field is specified. Canvases that are stopped but not archived, however, will be returned by default.\n\n\n## Response\n\n```json\nContent-Type: application/json\nAuthorization: Bearer YOUR-REST-API-KEY\n{\n \"canvases\" : [\n {\n \"id\" : (string) Canvas API Identifier,\n \"last_edited\": (ISO 8601 string) the last edited time for the message,\n \"name\" : (string) Canvas name,\n \"tags\" : (array) tag names associated with the Canvas,\n },\n ... (more Canvases)\n ],\n \"message\": (required, string) the status of the export, returns 'success' when completed without errors\n}\n```" provider: braze method: GET path: "/canvas/list" encoding: json input: { type: "object" properties: { include_archived: { type: "string" } "last_edit.time[gt]": { type: "string" } page: { type: "string" } sort_direction: { type: "string" } } additionalProperties: false } output: { type: "object" additionalProperties: true } }