Chilkat Online Tools

Java / Coupa Postman Collection - OAuth - Master / Export Requisitions - Based on Export Flag and Status

Back to Collection Items

import com.chilkatsoft.*;

public class ChilkatExample {

  static {
    try {
        System.loadLibrary("chilkat");
    } catch (UnsatisfiedLinkError e) {
      System.err.println("Native code library failed to load.\n" + e);
      System.exit(1);
    }
  }

  public static void main(String argv[])
  {
    // This example assumes the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.

    CkHttp http = new CkHttp();
    boolean success;

    CkJsonObject queryParams = new CkJsonObject();
    queryParams.UpdateString("exported","false");
    queryParams.UpdateString("status","ordered");

    // Adds the "Authorization: Bearer <access_token>" header.
    http.put_AuthToken("<access_token>");

    CkHttpResponse resp = http.QuickRequestParams("GET","https://domain.com/requisitions",queryParams);
    if (http.get_LastMethodSuccess() == false) {
        System.out.println(http.lastErrorText());
        return;
        }

    System.out.println(resp.get_StatusCode());
    System.out.println(resp.bodyStr());
  }
}

Curl Command

curl -G -d "exported=false"
	-d "status=ordered"
	-H "Authorization: Bearer <access_token>"
https://domain.com/requisitions

Postman Collection Item JSON

{
  "name": "Export Requisitions - Based on Export Flag and Status",
  "request": {
    "method": "GET",
    "header": [
    ],
    "url": {
      "raw": "{{URL}}/requisitions?exported=false&status=ordered",
      "host": [
        "{{URL}}"
      ],
      "path": [
        "requisitions"
      ],
      "query": [
        {
          "key": "exported",
          "value": "false"
        },
        {
          "key": "status",
          "value": "ordered"
        }
      ]
    }
  },
  "response": [
  ]
}