Chilkat Online Tools

Objective-C / Coupa Postman Collection - OAuth - Master / GET Commodity by ID

Back to Collection Items

#import <CkoHttp.h>
#import <CkoJsonObject.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;

CkoJsonObject *queryParams = [[CkoJsonObject alloc] init];
[queryParams UpdateString: @"fields" value: @"[\"id\",\"category\",\"name\",\"active\",{\"parent\":[\"id\",\"name\",\"category\",{\"custom_fields\":{}}]},{\"custom_fields\":{}}]"];

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

CkoHttpResponse *resp = [http QuickRequestParams: @"GET" url: @"https://domain.com/commodities/:id" json: queryParams];
if (http.LastMethodSuccess == NO) {
    NSLog(@"%@",http.LastErrorText);
    return;
}

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

Curl Command

curl -G -d "fields=%5B%22id%22,%22category%22,%22name%22,%22active%22,%7B%22parent%22%3A%5B%22id%22,%22name%22,%22category%22,%7B%22custom_fields%22%3A%7B%7D%7D%5D%7D,%7B%22custom_fields%22%3A%7B%7D%7D%5D"
	-H "Authorization: Bearer <access_token>"
https://domain.com/commodities/:id

Postman Collection Item JSON

{
  "name": "GET Commodity by ID",
  "request": {
    "method": "GET",
    "header": [
    ],
    "url": {
      "raw": "{{URL}}/commodities/:id?fields=[\"id\",\"category\",\"name\",\"active\",{\"parent\":[\"id\",\"name\",\"category\",{\"custom_fields\":{}}]},{\"custom_fields\":{}}]",
      "host": [
        "{{URL}}"
      ],
      "path": [
        "commodities",
        ":id"
      ],
      "query": [
        {
          "key": "fields",
          "value": "[\"id\",\"category\",\"name\",\"active\",{\"parent\":[\"id\",\"name\",\"category\",{\"custom_fields\":{}}]},{\"custom_fields\":{}}]"
        }
      ],
      "variable": [
        {
          "key": "id",
          "value": "1"
        }
      ]
    }
  },
  "response": [
  ]
}