Get all blog authors
GET/blogs/authors
The "Get all blog authors" API returns the blog authors for a given location ID.
Request
Version stringrequired
API Version
Available options
v3locationId stringrequired
Sub-account (location) identifier the author belongs to
limit numberrequired
Maximum number of authors to return (0-50)
offset numberrequired
Number of authors to skip before returning results
searchTerm string
Free-text search across author name and description
Successful response
- application/json
- Schema
- Example (auto)
Schema
authorsobject[]required
Array of authors
countnumberrequired
Total number of authors matching the query, ignoring limit/offset
{
"authors": [
{
"_id": "66c381b38be80858b9af62b6",
"locationId": "ve9EPM428h8vShlRW1KT",
"name": "Jane Doe",
"description": "Content strategist",
"imageUrl": "https://storage.googleapis.com/blog-assets/authors/jane.png"
}
],
"count": 42
}