GET :version/author/:author_guid

Returns all data for a single Author

A request requires a valid author_guid. These can be found using the Conversocial Data API.

# python
import requests

base_url = "https://ca-eu.conversocial.com/api"

response = requests.get(
    "https://ca-eu.conversocial.com/api/1/author",
    auth=("iamausername", "iamapassword"))

print response.status_code
> 200
# bash
curl -u "iamausername:iamapassworda12"
"https://ca-eu.conversocial.com/api/1/author"