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/6598075 to your computer and use it in GitHub Desktop.
Save kyletolle/6598075 to your computer and use it in GitHub Desktop.
choice_list.update sample event payload for Fulcrum Webhooks
{
id: "02a17aac-f875-49a4-931a-0e1f8558852d",
type: "choice_list.update",
owner_id: "00053caf-4b6e-4c86-88b6-64695895dffe",
data: {
name: "Tree Size",
description: "Categories for Trees Based on SIze.",
id: "c50d3a63-f444-4677-8bbd-4685f7800e49",
created_at: "2013-09-21T19:30:32Z",
updated_at: "2013-09-21T19:31:03Z",
choices: [
{
label: "Under 1 ft",
value: "mini"
},
{
label: "Between 1 and 4 ft",
value: "small"
},
{
label: "Between 4 and 10 ft",
value: "medium"
},
{
label: "Between 10 and 50 ft",
value: "large"
},
{
label: "Over 50 ft",
value: "x-large"
}
]
}
}
{"id":"02a17aac-f875-49a4-931a-0e1f8558852d","type":"choice_list.update","owner_id":"00053caf-4b6e-4c86-88b6-64695895dffe","data":{"name":"Tree Size","description":"Categories for Trees Based on SIze.","id":"c50d3a63-f444-4677-8bbd-4685f7800e49","created_at":"2013-09-21T19:30:32Z","updated_at":"2013-09-21T19:31:03Z","choices":[{"label":"Under 1 ft","value":"mini"},{"label":"Between 1 and 4 ft","value":"small"},{"label":"Between 4 and 10 ft","value":"medium"},{"label":"Between 10 and 50 ft","value":"large"},{"label":"Over 50 ft","value":"x-large"}]}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment