generated from webtechnicom/Stripe-Connect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGEST Request
54 lines (54 loc) · 1.37 KB
/
GEST Request
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
stripe post /v1/payment_intents \
-d amount=2000 \
-d currency=usd \
-d "payment_method_types[]=card"
{
"id": "pi_1HP4JjIV32DS3o2YiorBT1JK",
"object": "payment_intent",
"amount": 1000,
"amount_capturable": 0,
"amount_received": 0,
"application": null,
"application_fee_amount": null,
"canceled_at": null,
"cancellation_reason": null,
"capture_method": "automatic",
"charges": {
"object": "list",
"data": [],
"has_more": false,
"url": "/v1/charges?payment_intent=pi_1HP4JjIV32DS3o2YiorBT1JK"
},
"client_secret": "pi_1HP4JjIV32DS3o2YiorBT1JK_secret_Tpvk6IsQqaDn21wtSQw4xPqj6",
"confirmation_method": "automatic",
"created": 1599561891,
"currency": "usd",
"customer": null,
"description": "Created by stripe.com/docs demo",
"invoice": null,
"last_payment_error": null,
"livemode": false,
"metadata": {},
"next_action": null,
"on_behalf_of": null,
"payment_method": null,
"payment_method_options": {
"card": {
"installments": null,
"network": null,
"request_three_d_secure": "automatic"
}
},
"payment_method_types": [
"card"
],
"receipt_email": null,
"review": null,
"setup_future_usage": null,
"shipping": null,
"statement_descriptor": null,
"statement_descriptor_suffix": null,
"status": "requires_payment_method",
"transfer_data": null,
"transfer_group": null
}