Back to Collection Items
        
void ChilkatSample(void)
    {
    queryParams.UpdateString(L"fields",L"[\"id\",\"code\",\"description\",\"active\"]");    http.put_AuthToken(L"<access_token>");    success = http.HttpParams(L"GET",L"https://domain.com/payment_terms/:id",queryParams,resp);
    }
        Curl Command
        curl -G -d "fields=%5B%22id%22,%22code%22,%22description%22,%22active%22%5D"
	-H "Authorization: Bearer <access_token>"
https://domain.com/payment_terms/:id
        Postman Collection Item JSON
        {
  "name": "Get Payment Terms by ID",
  "request": {
    "method": "GET",
    "header": [
    ],
    "url": {
      "raw": "{{URL}}/payment_terms/:id?fields=[\"id\",\"code\",\"description\",\"active\"]",
      "host": [
        "{{URL}}"
      ],
      "path": [
        "payment_terms",
        ":id"
      ],
      "query": [
        {
          "key": "fields",
          "value": "[\"id\",\"code\",\"description\",\"active\"]"
        }
      ],
      "variable": [
        {
          "key": "id",
          "value": "1"
        }
      ]
    }
  },
  "response": [
  ]
}