Objective-C / New FreshBooks / Delete Checkout Link
Back to Collection Items
#import <CkoHttp.h>
#import <CkoHttpResponse.h>
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
CkoHttp *http = [[CkoHttp alloc] init];
BOOL success;
// Adds the "Authorization: Bearer <access_token>" header.
http.AuthToken = @"<access_token>";
CkoHttpResponse *resp = [http QuickRequest: @"DELETE" url: @"https://api.freshbooks.com/payments/account/{{accountid}}/checkout-links/{{checkoutlinkid}}"];
if (http.LastMethodSuccess == NO) {
NSLog(@"%@",http.LastErrorText);
return;
}
NSLog(@"%d",[resp.StatusCode intValue]);
NSLog(@"%@",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": [
]
}