Blog authors and tags

Manage the authors and topic tags used to organize your job board blog.

Authors provide the public byline and credibility for a post. Tags organize related editorial content into durable topic pages.

Discover author and tag endpoints

javascript
async () => Object.keys(spec.paths).filter((path) =>
path.startsWith('/blog/authors') || path.startsWith('/blog/tags')
)
  1. Find an existing author or tag by its stable identifier or slug.
  2. Create the missing record only after checking for near-duplicates.
  3. Attach the identifiers when creating or updating the post.
  4. Re-fetch the post and confirm its authorIds and tagIds arrays contain the intended identifiers.

Operator blog-post responses contain identifier arrays, not embedded author or tag objects. The post list endpoint also has no direct author or tag filter, so page through the posts and inspect authorIds and tagIds to find dependencies.

Deleting an author or tag does not cascade to blog posts. Existing posts may retain stale IDs, so show the dependent posts and obtain approval before removing either record. Blog tag names and slugs are authored values; do not translate or silently rename them.