Xojo / New FreshBooks / Delete Checkout Link
Back to Collection Items
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
Dim http As New Chilkat.Http
Dim success As Boolean
// Adds the "Authorization: Bearer <access_token>" header.
http.AuthToken = "<access_token>"
Dim resp As Chilkat.HttpResponse
resp = http.QuickRequest("DELETE","https://api.freshbooks.com/payments/account/{{accountid}}/checkout-links/{{checkoutlinkid}}")
If (http.LastMethodSuccess = False) Then
System.DebugLog(http.LastErrorText)
Return
End If
System.DebugLog(Str(resp.StatusCode))
System.DebugLog(resp.BodyStr)
Curl Command
curl -X DELETE
-H "Authorization: Bearer <access_token>"
https://api.freshbooks.com/payments/account/{{accountid}}/checkout-links/{{checkoutlinkid}}
Postman Collection Item JSON
{
"name": "Delete Checkout Link",
"request": {
"method": "DELETE",
"header": [
],
"url": {
"raw": "https://api.freshbooks.com/payments/account/{{accountid}}/checkout-links/{{checkoutlinkid}}",
"protocol": "https",
"host": [
"api",
"freshbooks",
"com"
],
"path": [
"payments",
"account",
"{{accountid}}",
"checkout-links",
"{{checkoutlinkid}}"
]
}
},
"response": [
]
}