Retrieve key account information

GET /api/v1/info

Responses

  • 200 application/json

    Account information

    Hide response attributes Show response attributes object
    • name string

      The account name

    • minimum_report_size integer

      The minimum number of responses required in a group to show results.

    • latest_results_date string

      The most recent date we have results data for. In YYYY-MM-DD format.

    • latest_quarterly_results_date string

      The most recent date when we asked the quarterly questions. In YYYY-MM-DD format.

GET /api/v1/info
curl \
 --request GET 'https://app.fridaypulse.com/api/v1/info' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
  {
    "name": "Your account name",
    "latest_results_date": "2023-03-17",
    "minimum_report_size": 3,
    "latest_quarterly_results_date": "2023-01-20"
  }
]