Chilkat Online Tools

Objective-C / Coupa Postman Collection - OAuth - Master / Query Approval records

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: @"approvable-type" value: @"EasyFormResponse"];
[queryParams UpdateString: @"status[in]" value: @"pending_approval,approved"];
[queryParams UpdateString: @"approver-type" value: @"RemoteApprover"];
[queryParams UpdateInt: @"approver-id" value: [NSNumber numberWithInt: 1]];
[queryParams UpdateString: @"fields" value: @"[\"approvable_type\",\"approvable_id\"]"];

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

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

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

Curl Command

curl -G -d "approvable-type=EasyFormResponse"
	-d "status[in]=pending_approval,approved"
	-d "approver-type=RemoteApprover"
	-d "approver-id=1"
	-d "fields=%5B%22approvable_type%22,%22approvable_id%22%5D"
	-H "Authorization: Bearer <access_token>"
https://domain.com/approvals

Postman Collection Item JSON

{
  "name": "Query Approval records",
  "request": {
    "method": "GET",
    "header": [
    ],
    "url": {
      "raw": "{{URL}}/approvals?approvable-type=EasyFormResponse&status[in]=pending_approval,approved&approver-type=RemoteApprover&approver-id=1&fields=[\"approvable_type\",\"approvable_id\"]",
      "host": [
        "{{URL}}"
      ],
      "path": [
        "approvals"
      ],
      "query": [
        {
          "key": "approvable-type",
          "value": "EasyFormResponse"
        },
        {
          "key": "status[in]",
          "value": "pending_approval,approved"
        },
        {
          "key": "approver-type",
          "value": "RemoteApprover"
        },
        {
          "key": "approver-id",
          "value": "1"
        },
        {
          "key": "fields",
          "value": "[\"approvable_type\",\"approvable_id\"]"
        }
      ]
    }
  },
  "response": [
  ]
}