API: Location Sharing - GeoTappy/geo_tappy_rails GitHub Wiki

POST /api/v1/location_shares

{
  "location_share": {
    "title": "json",
    "user_ids": [5],
    "location": {
      "lat": 20.0,
      "lng": 25.0
    }
  }
}

Note: user_ids is array of friends of current user that can be obtained via friends api or during login

Response

{ "status": "ok" }