Skip to main content

Does anyone know why the event data being sent to my webhook looks like a schema definition, instead of the actual activity data?

 

This is the event data that my webhook receives from Strava after an activity is logged, no data or whatsoever.

{
   "":"http://json-schema.org/draft-04/schema#",
   "title":"StravaPushModel",
   "type":"object",
   "required":e
      "event_time",
      "object_id",
      "object_type",
      "owner_id"
   ],
   "properties":{
      "event_time":{
         "type":"integer"
      },
      "object_id":{
         "type":"integer"
      },
      "object_type":{
         "type":"string"
      },
      "owner_id":{
         "type":"integer"
      }
   }
}

The webhook sends only really basic info, your app will still need to pull the ActivityDetails via the object id and owner id.


Reply