Chilkat Online Tools

Objective-C / Zoho CRM REST APIs / Custom

Back to Collection Items

#import <CkoHttp.h>
#import <CkoHttpRequest.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;

CkoHttpRequest *req = [[CkoHttpRequest alloc] init];
req.HttpVerb = @"DELETE";
req.Path = @"/crm/v2.1/{{custom_module_api_name}}/{{record_id}}/photo";
req.ContentType = @"multipart/form-data";
success = [req AddFileForUpload2: @"file" path: @" path to file" contentType: @"application/octet-stream"];

[req AddHeader: @"Authorization" value: @"Bearer <access_token>"];
[req AddHeader: @"Expect" value: @"100-continue"];

CkoHttpResponse *resp = [http SynchronousRequest: @"domain.com" port: [NSNumber numberWithInt: 443] ssl: YES req: req];
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>"
	--form 'file=@"/path/to/file"'
https://domain.com/crm/v2.1/{{custom_module_api_name}}/{{record_id}}/photo

Postman Collection Item JSON

{
  "name": "Custom",
  "request": {
    "auth": {
      "type": "bearer",
      "bearer": [
        {
          "key": "token",
          "value": "{{access-token}}",
          "type": "string"
        }
      ]
    },
    "method": "DELETE",
    "header": [
    ],
    "body": {
      "mode": "formdata",
      "formdata": [
        {
          "key": "file",
          "type": "file",
          "src": "/Users/sneha-9300/Desktop/image.jpg"
        }
      ]
    },
    "url": {
      "raw": "{{api-domain}}/crm/v2.1/{{custom_module_api_name}}/{{record_id}}/photo",
      "host": [
        "{{api-domain}}"
      ],
      "path": [
        "crm",
        "v2.1",
        "{{custom_module_api_name}}",
        "{{record_id}}",
        "photo"
      ]
    },
    "description": "To delete a photo from a record in a module."
  },
  "response": [
  ]
}