Skip to content

Instantly share code, notes, and snippets.

@kyletolle
Last active December 23, 2015 06:59
Show Gist options
  • Save kyletolle/6597806 to your computer and use it in GitHub Desktop.
Save kyletolle/6597806 to your computer and use it in GitHub Desktop.
classification_set.update sample event payload for Fulcrum Webhooks
{
id: "86bd5c0b-da59-4fe8-bc82-664eb35fc456",
type: "classification_set.update",
owner_id: "00053caf-4b6e-4c86-88b6-64695895dffe",
data: {
name: "Building Type",
description: "Categories for building types.",
id: "ff22c928-bb41-4360-acc1-aff44eeaa702",
created_at: "2013-09-21T19:27:06Z",
updated_at: "2013-09-21T19:27:25Z",
items: [
{
label: "School",
value: "school",
child_classifications: [
{
label: "Elementary",
value: "elem"
},
{
label: "Middle",
value: "mid"
},
{
label: "High",
value: "hi"
},
{
label: "College/University",
value: "univ"
}
]
},
{
label: "Bank",
value: "bank",
child_classifications: [
{
label: "ATM",
value: "atm"
},
{
label: "Branch",
value: "branch"
},
{
label: "Headquarters",
value: "hq"
}
]
}
]
}
}
{"id":"86bd5c0b-da59-4fe8-bc82-664eb35fc456","type":"classification_set.update","owner_id":"00053caf-4b6e-4c86-88b6-64695895dffe","data":{"name":"Building Type","description":"Categories for building types.","id":"ff22c928-bb41-4360-acc1-aff44eeaa702","created_at":"2013-09-21T19:27:06Z","updated_at":"2013-09-21T19:27:25Z","items":[{"label":"School","value":"school","child_classifications":[{"label":"Elementary","value":"elem"},{"label":"Middle","value":"mid"},{"label":"High","value":"hi"},{"label":"College/University","value":"univ"}]},{"label":"Bank","value":"bank","child_classifications":[{"label":"ATM","value":"atm"},{"label":"Branch","value":"branch"},{"label":"Headquarters","value":"hq"}]}]}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment