curl --request GET \
--url https://services.leadconnectorhq.com/blogs/authors \
--header 'Authorization: Bearer <token>'{
"authors": [
{
"locationId": "<string>",
"name": "<string>",
"description": "<string>",
"imageUrl": "<string>",
"imageAltText": "<string>",
"socials": [
"<string>"
],
"originId": "<string>",
"canonicalLink": "<string>"
}
]
}The “Get all authors” Api return the blog authors for a given location ID
curl --request GET \
--url https://services.leadconnectorhq.com/blogs/authors \
--header 'Authorization: Bearer <token>'{
"authors": [
{
"locationId": "<string>",
"name": "<string>",
"description": "<string>",
"imageUrl": "<string>",
"imageAltText": "<string>",
"socials": [
"<string>"
],
"originId": "<string>",
"canonicalLink": "<string>"
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Successful response
Array of authors
Show child attributes
Was this page helpful?