Chilkat Online Tools

phpAx / Zoho CRM REST APIs / Invoices

Back to Collection Items

<?php

// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.

$http = new COM("Chilkat_9_5_0.Http");

$queryParams = new COM("Chilkat_9_5_0.JsonObject");
$queryParams->UpdateString('type','all');

// Adds the "Authorization: Bearer <access_token>" header.
$http->AuthToken = '<access_token>';

// resp is a Chilkat_9_5_0.HttpResponse
$resp = $http->QuickRequestParams('GET','https://domain.com/crm/v2.1/Invoices/deleted',$queryParams);
if ($http->LastMethodSuccess == 0) {
    print $http->LastErrorText . "\n";
    exit;
}

print $resp->StatusCode . "\n";
print $resp->BodyStr . "\n";


?>

Curl Command

curl -G -d "type=all"
	-H "Authorization: Bearer <access_token>"
https://domain.com/crm/v2.1/Invoices/deleted

Postman Collection Item JSON

{
  "name": "Invoices",
  "request": {
    "auth": {
      "type": "bearer",
      "bearer": [
        {
          "key": "token",
          "value": "{{access-token}}",
          "type": "string"
        }
      ]
    },
    "method": "GET",
    "header": [
    ],
    "url": {
      "raw": "{{api-domain}}/crm/v2.1/Invoices/deleted?type=all",
      "host": [
        "{{api-domain}}"
      ],
      "path": [
        "crm",
        "v2.1",
        "Invoices",
        "deleted"
      ],
      "query": [
        {
          "key": "type",
          "value": "all"
        }
      ]
    },
    "description": "To get the list of available records in the Invoices module."
  },
  "response": [
  ]
}