Skip to content

Instantly share code, notes, and snippets.

@kyletolle
Last active December 23, 2015 06:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kyletolle/6597894 to your computer and use it in GitHub Desktop.
Save kyletolle/6597894 to your computer and use it in GitHub Desktop.
classification_set.delete sample event payload for Fulcrum Webhooks
{
id: "22b3ed8e-17dc-4557-b0d1-92030f3b2230",
type: "classification_set.delete",
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":"22b3ed8e-17dc-4557-b0d1-92030f3b2230","type":"classification_set.delete","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