Activation

get

Retrieves the Activation stats for the requested period

Authorizations
Query parameters
fromstring · date-timeOptional

Start date for retrieving stats (ddMMyyyy format). If null: Today minus one month

tostring · date-timeOptional

End date for retrieving stats (ddMMyyyy format). If null: Today

profilestringOptional

Profile filter string. If not specified, no profile filtering will be applied.

Example: profileId1:allowedValueId,profileId2:allowedValueId...
Responses
200

OK

*/*
get
GET /v1/public/company/stats/activation HTTP/1.1
Host: api.happyforce.com
happyforceAPIKey: YOUR_API_KEY
Accept: */*
200

OK

{
  "from": "2025-08-29T16:47:45.112Z",
  "to": "2025-08-29T16:47:45.112Z",
  "totalInvited": 1,
  "totalActivated": 1,
  "valuation": "NO_DATA",
  "dateResults": [
    {
      "date": "2025-08-29T16:47:45.112Z",
      "invited": 1,
      "invitedAccumulated": 1,
      "activated": 1,
      "activatedAccumulated": 1
    }
  ]
}

Was this helpful?