Returns a list of your coupons.
curl https://api.stripe.com/v1/coupons?limit=3 \
-u STRIPE_SECRET_KEY: \
-G
Dim rest As New ChilkatRest
Dim success As Long
' URL: https://api.stripe.com/v1/coupons?limit=3
Dim bTls As Long
bTls = 1
Dim port As Long
port = 443
Dim bAutoReconnect As Long
bAutoReconnect = 1
success = rest.Connect("api.stripe.com",port,bTls,bAutoReconnect)
If (success <> 1) Then
Debug.Print "ConnectFailReason: " & rest.ConnectFailReason
Debug.Print rest.LastErrorText
Exit Sub
End If
success = rest.SetAuthBasic("STRIPE_SECRET_KEY","")
Dim sbResponseBody As New ChilkatStringBuilder
success = rest.FullRequestNoBodySb("GET","/v1/coupons?limit=3",sbResponseBody)
If (success <> 1) Then
Debug.Print rest.LastErrorText
Exit Sub
End If
Dim jsonResponse As New ChilkatJsonObject
success = jsonResponse.LoadSb(sbResponseBody)
Dim object As String
Dim url As String
Dim has_more As Long
Dim i As Long
Dim count_i As Long
Dim id As String
Dim amount_off As Long
Dim created As Long
Dim currency As Long
Dim duration As String
Dim duration_in_months As Long
Dim livemode As Long
Dim max_redemptions As Long
Dim percent_off As Long
Dim redeem_by As Long
Dim times_redeemed As Long
Dim valid As Long
object = jsonResponse.StringOf("object")
url = jsonResponse.StringOf("url")
has_more = jsonResponse.BoolOf("has_more")
i = 0
count_i = jsonResponse.SizeOfArray("data")
Do While i < count_i
jsonResponse.I = i
id = jsonResponse.StringOf("data[i].id")
object = jsonResponse.StringOf("data[i].object")
amount_off = jsonResponse.IsNullOf("data[i].amount_off")
created = jsonResponse.IntOf("data[i].created")
currency = jsonResponse.IsNullOf("data[i].currency")
duration = jsonResponse.StringOf("data[i].duration")
duration_in_months = jsonResponse.IntOf("data[i].duration_in_months")
livemode = jsonResponse.BoolOf("data[i].livemode")
max_redemptions = jsonResponse.IsNullOf("data[i].max_redemptions")
percent_off = jsonResponse.IntOf("data[i].percent_off")
redeem_by = jsonResponse.IsNullOf("data[i].redeem_by")
times_redeemed = jsonResponse.IntOf("data[i].times_redeemed")
valid = jsonResponse.BoolOf("data[i].valid")
i = i + 1
Loop
{
"object": "list",
"url": "/v1/coupons",
"has_more": false,
"data": [
{
"id": "25OFF",
"object": "coupon",
"amount_off": null,
"created": 1516662783,
"currency": null,
"duration": "repeating",
"duration_in_months": 3,
"livemode": false,
"max_redemptions": null,
"metadata": {},
"percent_off": 25,
"redeem_by": null,
"times_redeemed": 0,
"valid": true
}
]
}