post
Save position in timeline

https://CounterSocial.example/api/v1/markers

Returns: Marker
OAuth: User token + write:statuses
Version history:
3.0.0 - added

Request

Headers
Authorization
required
string
Bearer
Form Data Parameters
home[last_read_id]
optional
string
ID of the last status read in the home timeline.
notifications[last_read_id]
optional
string
ID of the last notification read.

Response

200: Success

Calling this API with home[last_read_id] causes a marker to be created for the home timeline.

{
  "home": {
    "last_read_id": "103194548672408537",
    "version": 462,
    "updated_at": "2019-11-24T19:39:39.337Z"
  }
}

401: Unauthorized

Invalid or missing Authorization header

{
  "error": "The access token is invalid"
}

409: Conflict

If object is stale while being updated, an error will occur.

{
  "error": "Conflict during update, please try again"
}

Last updated December 27, 2020 ?? Improve this page