curl --request POST \
--url https://api.example.com/concat/rank-wise \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"dateFromUTC": "2023-01-01T00:00:00",
"dateToUTC": null,
"languageId": 1,
"categoryId": null,
"text": null,
"calendarPeriodTypeID": null,
"page": 1,
"pagesize": 10
}
'{
"success": true,
"data": "<unknown>"
}Get concat feed for this iser, ordered by highest ranked, descending. Used on the iser profile page, showing the ranked concats for a given iser, in order of most plus-ism’d isms to least.
curl --request POST \
--url https://api.example.com/concat/rank-wise \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"dateFromUTC": "2023-01-01T00:00:00",
"dateToUTC": null,
"languageId": 1,
"categoryId": null,
"text": null,
"calendarPeriodTypeID": null,
"page": 1,
"pagesize": 10
}
'{
"success": true,
"data": "<unknown>"
}The access token received from the authorization server in the OAuth 2.0 flow.