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/6597717 to your computer and use it in GitHub Desktop.
Save kyletolle/6597717 to your computer and use it in GitHub Desktop.
classification_set.create sample event payload for Fulcrum Webhooks
{
id: "0e7d69c7-94e9-40e2-b3b7-802c88c5fb47",
type: "classification_set.create",
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:06Z",
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"
}
]
}
]
}
}
{"id":"0e7d69c7-94e9-40e2-b3b7-802c88c5fb47","type":"classification_set.create","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:06Z","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"}]}]}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment