Back to Collection Items
        
void ChilkatSample(void)
    {
    queryParams.UpdateString(L"type",L"all");    http.put_AuthToken(L"<access_token>");    success = http.HttpParams(L"GET",L"https://domain.com/crm/v2/Contacts/deleted",queryParams,resp);
    }
        Curl Command
        curl -G -d "type=all"
	-H "Authorization: Bearer <access_token>"
https://domain.com/crm/v2/Contacts/deleted
        Postman Collection Item JSON
        {
  "name": "Contacts",
  "request": {
    "auth": {
      "type": "bearer",
      "bearer": [
        {
          "key": "token",
          "value": "{{access-token}}",
          "type": "string"
        }
      ]
    },
    "method": "GET",
    "header": [
    ],
    "url": {
      "raw": "{{api-domain}}/crm/v2/Contacts/deleted?type=all",
      "host": [
        "{{api-domain}}"
      ],
      "path": [
        "crm",
        "v2",
        "Contacts",
        "deleted"
      ],
      "query": [
        {
          "key": "type",
          "value": "all"
        }
      ]
    },
    "description": "To get the list of available records in the Contacts module."
  },
  "response": [
  ]
}