action braze_see_content_block_information { label: "See Content Block Information" description: "This endpoint will call information for an existing Content Block.\n\n### Successful Response Properties\n```json\nContent-Type: application/json\nAuthorization: Bearer YOUR_REST_API_KEY\n{\n \"content_block_id\": \"string\",\n \"name\": \"string\",\n \"content\": \"string\",\n \"description\": \"string\",\n \"content_type\": \"html or text\",\n \"tags\": \"array of strings\",\n \"created_at\": \"time-in-iso\",\n \"last_edited\": \"time-in-iso\",\n \"inclusion_count\" : \"integer\",\n \"message\": \"success\"\n}\n```\n\n### Possible Errors\n- `Content Block ID cannot be blank.` - A Content Block has not been listed or is not encapsulated in quotes.\n\n- `Content Block ID is invalid for this App Group.` - This Content Block does not exist or is in a different company account or app group.\n\n- `Content Block has been deleted - content not available.` - This Content Block, though it may have existed earlier, has been deleted.\n\n- `Include Inclusion Data - error` - One of true or false is not provided." provider: braze method: GET path: "/content_blocks/info" encoding: json input: { type: "object" properties: { content_block_id: { type: "string" } include_inclusion_data: { type: "string" } } additionalProperties: false } output: { type: "object" additionalProperties: true } }