Blog authors and tags
Manage the authors and topic tags used to organize your job board blog.
A
JAuthors provide the public byline and credibility for a post. Tags organize related editorial content into durable topic pages.
Discover author and tag endpoints
javascript
123async () => Object.keys(spec.paths).filter((path) =>path.startsWith('/blog/authors') || path.startsWith('/blog/tags'))
Recommended order
- Find an existing author or tag by its stable identifier or slug.
- Create the missing record only after checking for near-duplicates.
- Attach the identifiers when creating or updating the post.
- Re-fetch the post and confirm its
authorIdsandtagIdsarrays 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.