Add a status to favorites

POST /favorites/create
application/x-www-form-urlencoded

Body Required

  • id integer

    The id of the status to favorite

Responses

  • 200

    Status added to favorites successfully

  • 404

    Status not found

POST /favorites/create
curl \
 -X POST https://blips.club/favorites/create \
 -H "Content-Type: application/x-www-form-urlencoded" \
 -d 'id=42'
Request example
{
  "id": 42
}