Stripe Payment

After the payment is created you will need to poll the endpoint until the payment is confirmed. This may take 15 to 30 seconds depending on the fraud checks and the rest of the setup.
When the payment is confirmed and the order balance goes to 0, the order can be confirmed.

GET /channel/payments/:id

{  
  "type": "stripe",
  "id": "7bf918e9-c326-4adc-ab3a-ac0e72eed388",
  "currency": "GBP",
  "balance": "10.08",
  "amount": "10.08",
  "refunded": "0",
  "serial": "8555",
  "reference": "PY-8BB",
  "refundable": true,
  "confirmed": true,
  "confirmed_at": "2015-05-11T15:53:14.000Z",
  "created_at": "2015-05-11T15:52:53.699Z",
  "updated_at": "2015-05-11T15:53:22.794Z",
  "disputed": false,
  "status": "succeeded",
  "failure_code": null,
  "failure_message": null,
  "source":{  
    "type": "card",
    "token": null,
    "reusable": true,
    "last4": "4242",
    "exp_month": 12,
    "exp_year": 2016,
    "scheme": "visa",
    "fingerprint": "nnabgk5bdObBNzSq",
    "country": "US",
    "funding": "credit"
  },
  "dispute": null
}
Language