Skip to main content
Answer

Webhook Event Data

  • March 12, 2025
  • 1 reply
  • 42 views

Forum|alt.badge.img+1

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":[
      "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"
      }
   }
}

Best answer by mikeruns26.2

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

1 reply

mikeruns26.2
Forum|alt.badge.img+3
  • Hub Climber
  • Answer
  • March 12, 2025

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