Chilkat Online Tools

Objective-C / Zoho CRM REST APIs / Invoices

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: @"Invoice"];
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/Invoices/actions/add_tags?ids={{record_id1,record_id2}}&tag_names=Cash Invoice

Postman Collection Item JSON

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