Chilkat Online Tools

Objective-C / Zoho CRM REST APIs / Purchase Orders

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: @"POST" url: @"Order,"];
if (http.LastMethodSuccess == NO) {
    NSLog(@"%@",http.LastErrorText);
    return;
}

NSLog(@"%d",[resp.StatusCode intValue]);
NSLog(@"%@",resp.BodyStr);

Curl Command

curl -X POST
	-H "Authorization: Bearer <access_token>"
https://domain.com/crm/v2/Purchase_Orders/actions/remove_tags?ids={{record_id1,record_id2,..}}&tag_names=Standard Order,

Postman Collection Item JSON

{
  "name": "Purchase Orders",
  "request": {
    "auth": {
      "type": "bearer",
      "bearer": [
        {
          "key": "token",
          "value": "{{access-token}}",
          "type": "string"
        }
      ]
    },
    "method": "POST",
    "header": [
    ],
    "url": {
      "raw": "{{api-domain}}/crm/v2/Purchase_Orders/actions/remove_tags?ids={{record_id1,record_id2,..}}&tag_names=Standard Order,",
      "host": [
        "{{api-domain}}"
      ],
      "path": [
        "crm",
        "v2",
        "Purchase_Orders",
        "actions",
        "remove_tags"
      ],
      "query": [
        {
          "key": "ids",
          "value": "{{record_id1,record_id2,..}}"
        },
        {
          "key": "tag_names",
          "value": "Standard Order,"
        }
      ]
    },
    "description": "To add tags to records."
  },
  "response": [
  ]
}