Chilkat Online Tools

Python / Coupa Postman Collection - OAuth - Master / GET SIM Form Response in a particular status

Back to Collection Items

import sys
import chilkat

# This example assumes the Chilkat API to have been previously unlocked.
# See Global Unlock Sample for sample code.

http = chilkat.CkHttp()

queryParams = chilkat.CkJsonObject()
queryParams.UpdateString("status","pending_approval")

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

# resp is a CkHttpResponse
resp = http.QuickRequestParams("GET","https://domain.com/api/supplier_information/all/easy_form_responses",queryParams)
if (http.get_LastMethodSuccess() == False):
    print(http.lastErrorText())
    sys.exit()

print(str(resp.get_StatusCode()))
print(resp.bodyStr())

Curl Command

curl -G -d "status=pending_approval"
	-H "Authorization: Bearer <access_token>"
https://domain.com/api/supplier_information/all/easy_form_responses

Postman Collection Item JSON

{
  "name": "GET SIM Form Response in a particular status",
  "request": {
    "method": "GET",
    "header": [
    ],
    "url": {
      "raw": "{{URL}}/api/supplier_information/all/easy_form_responses?status=pending_approval",
      "host": [
        "{{URL}}"
      ],
      "path": [
        "api",
        "supplier_information",
        "all",
        "easy_form_responses"
      ],
      "query": [
        {
          "key": "status",
          "value": "pending_approval"
        }
      ]
    }
  },
  "response": [
  ]
}