(Objective-C) CardConnect Delete Profile
Demonstrates how to delete a profile.
A DELETE request to the profile endpoint deletes the stored data for the specified profile ID. ...
See https://developer.cardconnect.com/cardconnect-api?lang=json#delete-profile-request
#import <CkoHttp.h>
#import <NSString.h>
#import <CkoJsonObject.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;
http.BasicAuth = YES;
http.Login = @"API_USERNAME";
http.Password = @"API_PASSWORD";
NSString *url = @"https://<site>.cardconnect.com:<port>/cardconnect/rest/profile/<profile ID>/<account ID>/<merchid>";
NSString *responseStr = [http QuickDeleteStr: url];
if (http.LastMethodSuccess == NO) {
NSLog(@"%@",http.LastErrorText);
return;
}
// A response status of 200 indicates potential success. The JSON response body
// must be examined to determine if it was truly successful or an error.
NSLog(@"%@%d",@"response status code = ",[http.LastStatus intValue]);
CkoJsonObject *jsonResp = [[CkoJsonObject alloc] init];
[jsonResp Load: responseStr];
jsonResp.EmitCompact = NO;
NSLog(@"%@",@"response JSON:");
NSLog(@"%@",[jsonResp Emit]);
// A successful response looks like this:
// {
// "respproc": "PPS",
// "resptext": "Profile Deleted",
// "respstat": "A",
// "respcode": "08"
// }
//
//
|