Skip to content

Instantly share code, notes, and snippets.

@mlapida
Created February 26, 2016 18:00
Show Gist options
  • Save mlapida/6c0646a60a3ddcc661ad to your computer and use it in GitHub Desktop.
Save mlapida/6c0646a60a3ddcc661ad to your computer and use it in GitHub Desktop.
A webhook to be used with a Particle Photon
{
"event": "sendSleep",
"url": "https://[yourendpoint].execute-api.us-east-1.amazonaws.com/prod/ParticleSleepV1",
"requestType": "Post",
"headers": {
"x-api-key" : "[yourapikey]"
},
"json": {
"name": "{{SPARK_EVENT_NAME}}",
"data": "{{SPARK_EVENT_VALUE}}",
"source": "{{SPARK_CORE_ID}}",
"published_at": "{{SPARK_PUBLISHED_AT}}"
},
"mydevices": true,
"noDefaults": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment