Chilkat Online Tools

Unicode C++ / Coupa Postman Collection - OAuth - Master / Get SIM Form Response pending with Remote Approver

Back to Collection Items

void ChilkatSample(void)
    {
    queryParams.UpdateString(L"status",L"pending_approval");    queryParams.UpdateString(L"approvals[approver-id]",L":user-id");    http.put_AuthToken(L"<access_token>");
    }

Curl Command

curl -G -d "status=pending_approval"
	-d "approvals[approver-id]=%3Auser-id"
	-H "Authorization: Bearer <access_token>"
https://domain.com/api/supplier_information/all/easy_form_responses

Postman Collection Item JSON

{
  "name": "Get SIM Form Response pending with Remote Approver",
  "request": {
    "method": "GET",
    "header": [
    ],
    "url": {
      "raw": "{{URL}}/api/supplier_information/all/easy_form_responses?status=pending_approval&approvals[approver-id]=:user-id",
      "host": [
        "{{URL}}"
      ],
      "path": [
        "api",
        "supplier_information",
        "all",
        "easy_form_responses"
      ],
      "query": [
        {
          "key": "status",
          "value": "pending_approval"
        },
        {
          "key": "approvals[approver-id]",
          "value": ":user-id"
        }
      ]
    }
  },
  "response": [
  ]
}