chargify / docs.chargify.com

Chargify Documentation
http://docs.chargify.com
14 stars 13 forks source link

Incorrect Sample Payload #162

Open tstngdvlp opened 8 years ago

tstngdvlp commented 8 years ago

In the below URL API Invoices - Charges

Sample Payload:

{
  "payment": {
    "amount": 10.00,
    "memo": "Lorem ipsum"
  }
}

Needs to be change to this

{
  "charge": {
    "amount": 10.00,
    "memo": "Lorem ipsum"
  }
}