# ContentItem

ContentItem

A piece of content in Buffer. It starts as a channel-less draft and can later
become a set of channel-specific posts, or it can be created with its posts
directly.

This API is an early preview and can change without a deprecation period.

**Status:** ⚠️ Experimental

**Fields:**
- `id`: `ContentItemId!` - Unique identifier for this content item.
- `accountId`: `AccountId!` - Account that owns this content item.
- `author`: `Author` - The person who created this content item. Null when that person's account
no longer exists.
- `body`: `ContentItemBody!` - The current content of this item: either a channel-less draft or the
channel-specific posts created from it.
- `organizationId`: `OrganizationId!` - Organization that owns this content item.
- `tags`: `[Tag!]!` - Tags applied to this content item, in the order they were set. A tag
applies to the item as a whole, so it survives the move from a
channel-less draft to channel-specific posts.
- `targetDate`: `DateTime` - Optional date indicating when this piece of content should go out.
This is a planning aid only and does not schedule any posts.
- `title`: `String` - Optional title describing what this piece of content is about.
- `createdAt`: `DateTime!` - When this content item was created.