Skip to main content
GET
/
fixtures
/
{locale}
/
core
/
report
Get fixture data for Core reports by locale
curl --request GET \
  --url https://vanguard.profilebehavior.com/api/v4/fixtures/{locale}/core/report \
  --header 'Authorization: Bearer <token>'
{
  "code": 200,
  "reportFixtures": [
    {
      "key": "achievement",
      "label": "Achievement",
      "bullet": "Attaining goals, sense of accomplishment",
      "reportSections": [
        "My goals are challenging but achievable.",
        "I reach big goals by breaking them down into smaller milestones.",
        "I see projects through from beginning to end."
      ],
      "descriptor": "This value reflects a strong focus on reaching goals and feeling a sense of accomplishment. To appeal to this value, provide clear milestones, recognize progress, and celebrate completed work.\n",
      "locale": "en"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

locale
enum<string>
default:en
required

ISO country code indicating which language the content should be retrieved in.

Available options:
de,
en,
es,
fr,
jp,
ko,
nl,
pt_BR,
zh_CN

Response

Success

Standard response object for successful single-resource requests in the Profile Behavior API. Contains an HTTP status code, the returned resource data, and a status indicator.

code
integer<int32>
required

HTTP status code of the successful response.

status
enum<string>

Always "success" for successful responses.

Available options:
success
reportFixtures
object[]