Chilkat Online Tools

Unicode C++ / Zoho CRM REST APIs / Sales Orders

Back to Collection Items

void ChilkatSample(void)
    {
    json.UpdateString(L"data[0].Status",L"Approved");    json.UpdateString(L"cvid",L"{{custom_view_id}}");    http.put_AuthToken(L"<access_token>");    success = http.HttpJson(L"POST",L"https://domain.com/crm/v2.1/Sales_Orders/actions/mass_update",json,L"application/json",resp);
    }

Curl Command

curl -X POST
	-H "Authorization: Bearer <access_token>"
	-d '{
    "data": [
        {
            "Status": "Approved"
        }
    ],
    "cvid": "{{custom_view_id}}"
}'
https://domain.com/crm/v2.1/Sales_Orders/actions/mass_update

Postman Collection Item JSON

{
  "name": "Sales Orders",
  "request": {
    "auth": {
      "type": "bearer",
      "bearer": [
        {
          "key": "token",
          "value": "{{access-token}}",
          "type": "string"
        }
      ]
    },
    "method": "POST",
    "header": [
    ],
    "body": {
      "mode": "raw",
      "raw": "{\n    \"data\": [\n        {\n            \"Status\": \"Approved\"\n        }\n    ],\n    \"cvid\": \"{{custom_view_id}}\"\n}",
      "options": {
        "raw": {
          "language": "json"
        }
      }
    },
    "url": {
      "raw": "{{api-domain}}/crm/v2.1/Sales_Orders/actions/mass_update",
      "host": [
        "{{api-domain}}"
      ],
      "path": [
        "crm",
        "v2.1",
        "Sales_Orders",
        "actions",
        "mass_update"
      ]
    },
    "description": "To schedule mass update for Sales Orders"
  },
  "response": [
  ]
}