Skip to content

Instantly share code, notes, and snippets.

@soloman1124
Created February 20, 2014 11:55
Show Gist options
  • Select an option

  • Save soloman1124/9111971 to your computer and use it in GitHub Desktop.

Select an option

Save soloman1124/9111971 to your computer and use it in GitHub Desktop.
Fundraising Goals
/*
* Example page creation request:
*
* allowed params are:
* full_name, name, nickname, slug, expires_at, birthday, gift_aid_eligible, target, formatted_address, phone
*/
{
"target": 3500,
"expires_at": "2014-05-07T11:57:25.000+11:00",
"charity_id": 2474,
"slug": "test-a-v4",
"phone": "0433084655"
}
/*
* Example payload when created sucessfully (status code: 201 Created)
*/
{
"id":205257,
"slug":"test-a-v4",
"uid":205257,
"state":"active",
"name":"Tester A",
"created_at":"2014-02-20T21:48:44.200+11:00",
"expires_at":"2014-05-07T10:57:25.000+10:00",
"amount":{
"cents":0,
"currency":{
"iso_code":"AUD",
"name":"Australian Dollar",
"symbol":"$"
}
},
"target":{
"cents":350000,
"currency":{
"iso_code":"AUD",
"name":"Australian Dollar",
"symbol":"$"
}
},
"charity":{
"uid":"au-1141",
"name":"Help Talaya Appeal"
},
"campaign":{
"uid":"au-0",
"name":"Everyday Hero"
},
"image_url":{
"tiny":"http://supporter.dev/assets/pages/images/tiny/missing.gif",
"small":"http://supporter.dev/assets/pages/images/small/missing.gif",
"medium":"http://supporter.dev/assets/pages/images/medium/missing.gif",
"large":"http://supporter.dev/assets/pages/images/large/missing.gif"
},
"url":"http://give.supporter.dev/au/test-a-v4",
"dropdown_target":"#test-a-v4",
"edit_url":"http://give.supporter.dev/au/test-a-v4/edit",
"duplicate_url":"http://give.supporter.dev/au/get-started"
}
/*
* Example error output (status code: 422 Unprocessable Entity)
*/
{
"errors":{
"target":[
"must be greater than 0"
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment