Get the top 25 user languages (ISO-639-1 codes) of the last 7 days.
GET /domains/:domainId/languages?sorting=top
Name | Example |
---|---|
Authorization | Authorization: Bearer :tokenId |
Status: 200 OK
{
"type": "languages",
"data": [
{
"type": "language",
"data": {
"id": "de",
"count": 1
}
}
]
}
Get the 25 most recent user languages (ISO-639-1 codes) of the last 7 days.
GET /domains/:domainId/languages?sorting=recent
Name | Example |
---|---|
Authorization | Authorization: Bearer :tokenId |
Status: 200 OK
{
"type": "languages",
"data": [
{
"type": "language",
"data": {
"id": "de",
"created": "2019-09-19T15:54:00.020Z"
}
}
]
}