Back to Collection Items
void ChilkatSample(void)
{
json.UpdateString(L"data[0].Stage",L"Proposal/Price Quote"); 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/Deals/actions/mass_update",json,L"application/json",resp);
}
Curl Command
curl -X POST
-H "Authorization: Bearer <access_token>"
-d '{
"data": [
{
"Stage": "Proposal/Price Quote"
}
],
"cvid": "{{custom_view_id}}"
}'
https://domain.com/crm/v2.1/Deals/actions/mass_update
Postman Collection Item JSON
{
"name": "Deals",
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{access-token}}",
"type": "string"
}
]
},
"method": "POST",
"header": [
],
"body": {
"mode": "raw",
"raw": "{\n \"data\": [\n {\n \"Stage\": \"Proposal/Price Quote\"\n }\n ],\n \"cvid\": \"{{custom_view_id}}\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{api-domain}}/crm/v2.1/Deals/actions/mass_update",
"host": [
"{{api-domain}}"
],
"path": [
"crm",
"v2.1",
"Deals",
"actions",
"mass_update"
]
},
"description": "To schedule mass update for Deals"
},
"response": [
]
}