Manufacturing Orders
AI Tools
Open in ChatGPT
Open in ChatGPT to ask questions about this page
Open in Claude
Open in Claude to ask questions about this page
Copy as Markdown
Copy this page as markdown to use with AI assistants
View as Markdown
Open this page as markdown in a new tab
Open in ChatGPT
Open in ChatGPT to ask questions about this page
Open in Claude
Open in Claude to ask questions about this page
Copy as Markdown
Copy this page as markdown to use with AI assistants
View as Markdown
Open this page as markdown in a new tab
A manufacturing order records the production of a finished item. It specifies the item to be produced by associating a Bill of Materials (BOM) to determine the required components and operations. Once the manufacturing order is completed, the quantity of the manufactured item increases based on the specified production quantity, while the component quantities are reduced.
Attribute
draft, confirmed, released, inprogress, completed and canceled.yyyy-MM-dd.Date format:
yyyy-MM-dd.yyyy-MM-dd.yyyy-MM-dd.HH:MM:SS.HH:MM:SS.available and not_available.inventory and service.MM:SS.not_applicable, pending and completed.{
"manufacturingorder_id": "3863095000000057231",
"manufacturingorder_number": "MFG-00017",
"item_id": "3863095000000046004",
"item_name": "Pencil",
"item_sku": "",
"quantity": 50,
"unit": "pcs",
"billofmaterials_id": "3863095000000039154",
"billofmaterials_name": "Pencil BOM 3",
"version_id": "3863095000000039157",
"version_name": "Pencil BOM 3 V1",
"status": "draft",
"completed_quantity": 0,
"assigned_owner_id": "3863095000000032003",
"assigned_owner_name": "",
"parent_manufacturing_order_id": "",
"parent_manufacturing_order_number": "",
"posted_date": "1778437800000",
"planned_start_date": "2026-05-11",
"planned_end_date": "2026-05-15",
"actual_start_date": "",
"actual_end_date": "",
"estimated_duration": "00:35:00",
"actual_duration": "00:00:00",
"total_jobcard_count": 0,
"completed_jobcard_count": 0,
"pending_jobcard_count": 0,
"custom_fields": [
{
"customfield_id": "982000000000183",
"value": "Batch-A"
}
],
"components": [
{
"mo_component_id": "3863095000000057238",
"bom_component_id": "3863095000000039175",
"item_id": "3863095000000046015",
"name": "Wood",
"item_sku": "WD-001",
"description": "",
"rate": 10,
"total_amount": 10,
"availability_status": "not_available",
"quantity": 1,
"quantity_available": -21.01,
"quantity_available_for_production": -22.02,
"quantity_consumed": 0,
"unit": "kg",
"subassembly_bom_id": "",
"item_type": "inventory",
"consumed_in_operation_id": "",
"consumed_in_operation_name": "",
"component_manufacturing_order_id": "",
"component_manufacturing_order_number": ""
}
],
"operations": [
{
"mo_operation_id": "3863095000000057234",
"operation_id": "3863095000000039095",
"operation_name": "Manufacturing OPR",
"bom_operation_id": "3863095000000039163",
"workcenter_type_id": "3863095000000039041",
"workcenter_type_name": "Manufacturing WCT",
"lead_time": "00:18",
"instructions": "",
"operation_cost": 1050,
"documents": [
{}
]
}
],
"comments": [
{
"comment_id": "3863095000000057252",
"description": "Manufacturing order created",
"commented_by_id": "3863095000000032003",
"commented_by": "John Smith",
"comment_type": "system",
"date": "2026-05-11",
"date_description": "few seconds ago",
"time": "9:46 AM",
"operation_type": "Added",
"transaction_type": "manufacturingorder"
}
],
"quality_queue_status": "not_applicable"
}
Create a manufacturing order
AI Tools
Open in ChatGPT
Open in ChatGPT to ask questions about this page
Open in Claude
Open in Claude to ask questions about this page
Copy as Markdown
Copy this page as markdown to use with AI assistants
View as Markdown
Open this page as markdown in a new tab
Open in ChatGPT
Open in ChatGPT to ask questions about this page
Open in Claude
Open in Claude to ask questions about this page
Copy as Markdown
Copy this page as markdown to use with AI assistants
View as Markdown
Open this page as markdown in a new tab
Create a manufacturing order.
OAuth Scope : ERP.manufacturing.CREATE
Arguments
yyyy-MM-dd.Date format:
yyyy-MM-dd.MM:SS.draft and confirmed.Query Parameters
parameters_data='{"field1":"value1","field2":"value2"}';
headers_data = Map();
headers_data.put("Authorization", "Zoho-oauthtoken 1000.41d9xxxxxxxxxxxxxxxxxxxxxxxxc2d1.8fccxxxxxxxxxxxxxxxxxxxxxxxx125f");
response = invokeUrl
[
url: "https://www.zohoapis.in/erp/v3/manufacturingorders?organization_id=10234695"
type: POST
headers: headers_data
content-type: application/json
parameters: parameters_data
connection: <connection_name>
];
info response;
OkHttpClient client = new OkHttpClient();
MediaType mediaType = MediaType.parse("application/json");
RequestBody body = RequestBody.create(mediaType, "{\"field1\":\"value1\",\"field2\":\"value2\"}");
Request request = new Request.Builder()
.url("https://www.zohoapis.in/erp/v3/manufacturingorders?organization_id=10234695")
.post(body)
.addHeader("Authorization", "Zoho-oauthtoken 1000.41d9xxxxxxxxxxxxxxxxxxxxxxxxc2d1.8fccxxxxxxxxxxxxxxxxxxxxxxxx125f")
.addHeader("content-type", "application/json")
.build();
Response response = client.newCall(request).execute();
const options = {
method: 'POST',
headers: {
Authorization: 'Zoho-oauthtoken 1000.41d9xxxxxxxxxxxxxxxxxxxxxxxxc2d1.8fccxxxxxxxxxxxxxxxxxxxxxxxx125f',
'content-type': 'application/json'
},
body: '{"field1":"value1","field2":"value2"}'
};
fetch('https://www.zohoapis.in/erp/v3/manufacturingorders?organization_id=10234695', options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));
import http.client
conn = http.client.HTTPSConnection("www.zohoapis.in")
payload = "{\"field1\":\"value1\",\"field2\":\"value2\"}"
headers = {
'Authorization': "Zoho-oauthtoken 1000.41d9xxxxxxxxxxxxxxxxxxxxxxxxc2d1.8fccxxxxxxxxxxxxxxxxxxxxxxxx125f",
'content-type': "application/json"
}
conn.request("POST", "/erp/v3/manufacturingorders?organization_id=10234695", payload, headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
const http = require("https");
const options = {
"method": "POST",
"hostname": "www.zohoapis.in",
"port": null,
"path": "/erp/v3/manufacturingorders?organization_id=10234695",
"headers": {
"Authorization": "Zoho-oauthtoken 1000.41d9xxxxxxxxxxxxxxxxxxxxxxxxc2d1.8fccxxxxxxxxxxxxxxxxxxxxxxxx125f",
"content-type": "application/json"
}
};
const req = http.request(options, function (res) {
const chunks = [];
res.on("data", function (chunk) {
chunks.push(chunk);
});
res.on("end", function () {
const body = Buffer.concat(chunks);
console.log(body.toString());
});
});
req.write(JSON.stringify({field1: 'value1', field2: 'value2'}));
req.end();
curl --request POST \
--url 'https://www.zohoapis.in/erp/v3/manufacturingorders?organization_id=10234695' \
--header 'Authorization: Zoho-oauthtoken 1000.41d9xxxxxxxxxxxxxxxxxxxxxxxxc2d1.8fccxxxxxxxxxxxxxxxxxxxxxxxx125f' \
--header 'content-type: application/json' \
--data '{"field1":"value1","field2":"value2"}'
{
"manufacturingorder_number": "MFG-00017",
"item_id": "3863095000000046004",
"quantity": 50,
"billofmaterials_id": "3863095000000039154",
"version_id": "3863095000000039157",
"parent_manufacturing_order_id": "",
"planned_start_date": "2026-05-11",
"planned_end_date": "2026-05-15",
"assigned_owner_id": "3863095000000032003",
"operations": [
{
"operation_id": "3863095000000039095",
"bom_operation_id": "3863095000000039163",
"lead_time": "00:18",
"instructions": ""
}
],
"components": [
{
"bom_component_id": "3863095000000039175",
"item_id": "3863095000000046015",
"description": "",
"quantity": 1,
"unit": "kg",
"subassembly_bom_id": ""
}
],
"custom_fields": [
{
"customfield_id": "982000000000183",
"value": "Batch-A"
}
],
"status": "draft",
"unit": "pcs",
"unit_conversion_id": ""
}
{
"code": 0,
"message": "Manufacturing Order Created",
"manufacturingorder": {
"manufacturingorder_id": "3863095000000057231",
"manufacturingorder_number": "MFG-00017",
"item_id": "3863095000000046004",
"item_name": "Pencil",
"item_sku": "",
"quantity": 50,
"unit": "pcs",
"billofmaterials_id": "3863095000000039154",
"billofmaterials_name": "Pencil BOM 3",
"version_id": "3863095000000039157",
"version_name": "Pencil BOM 3 V1",
"status": "draft",
"completed_quantity": 0,
"assigned_owner_id": "3863095000000032003",
"assigned_owner_name": "",
"parent_manufacturing_order_id": "",
"parent_manufacturing_order_number": "",
"posted_date": "1778437800000",
"planned_start_date": "2026-05-11",
"planned_end_date": "2026-05-15",
"actual_start_date": "",
"actual_end_date": "",
"estimated_duration": "00:35:00",
"actual_duration": "00:00:00",
"total_jobcard_count": 0,
"completed_jobcard_count": 0,
"pending_jobcard_count": 0,
"custom_fields": [
{
"customfield_id": "982000000000183",
"value": "Batch-A"
}
],
"components": [
{
"mo_component_id": "3863095000000057238",
"bom_component_id": "3863095000000039175",
"item_id": "3863095000000046015",
"name": "Wood",
"item_sku": "WD-001",
"description": "",
"rate": 10,
"total_amount": 10,
"availability_status": "not_available",
"quantity": 1,
"quantity_available": -21.01,
"quantity_available_for_production": -22.02,
"quantity_consumed": 0,
"unit": "kg",
"subassembly_bom_id": "",
"item_type": "inventory",
"consumed_in_operation_id": "",
"consumed_in_operation_name": "",
"component_manufacturing_order_id": "",
"component_manufacturing_order_number": ""
}
],
"operations": [
{
"mo_operation_id": "3863095000000057234",
"operation_id": "3863095000000039095",
"operation_name": "Manufacturing OPR",
"bom_operation_id": "3863095000000039163",
"workcenter_type_id": "3863095000000039041",
"workcenter_type_name": "Manufacturing WCT",
"lead_time": "00:18",
"instructions": "",
"operation_cost": 1050,
"documents": [
{...}
]
}
],
"comments": [
{
"comment_id": "3863095000000057252",
"description": "Manufacturing order created",
"commented_by_id": "3863095000000032003",
"commented_by": "John Smith",
"comment_type": "system",
"date": "2026-05-11",
"date_description": "few seconds ago",
"time": "9:46 AM",
"operation_type": "Added",
"transaction_type": "manufacturingorder"
}
],
"quality_queue_status": "not_applicable"
}
}
List manufacturing orders
AI Tools
Open in ChatGPT
Open in ChatGPT to ask questions about this page
Open in Claude
Open in Claude to ask questions about this page
Copy as Markdown
Copy this page as markdown to use with AI assistants
View as Markdown
Open this page as markdown in a new tab
Open in ChatGPT
Open in ChatGPT to ask questions about this page
Open in Claude
Open in Claude to ask questions about this page
Copy as Markdown
Copy this page as markdown to use with AI assistants
View as Markdown
Open this page as markdown in a new tab
List all manufacturing orders.
OAuth Scope : ERP.manufacturing.READ
Query Parameters
created_time, manufacturingorder_number, item_name, status, planned_start_date, quantity, completed_quantity and assigned_owner_name.Status.All, Status.Draft, Status.Confirmed, Status.InProgress, Status.Released, Status.Completed and Status.Cancelled.manufacturingorder_number_startswith and manufacturingorder_number_contains.draft, confirmed, canceled, released, inprogress and completed.finished_product_unit_startswith and finished_product_unit_contains.quantity_start, quantity_end, quantity_less_than, quantity_less_equals, quantity_greater_than and quantity_greater_equals.completed_quantity_start, completed_quantity_end, completed_quantity_less_than, completed_quantity_less_equals, completed_quantity_greater_than and completed_quantity_greater_equals.planned_start_date_start, planned_start_date_end, planned_start_date_before and planned_start_date_after. Date format: yyyy-MM-dd.planned_end_date_start, planned_end_date_end, planned_end_date_before and planned_end_date_after. Date format: yyyy-MM-dd.headers_data = Map();
headers_data.put("Authorization", "Zoho-oauthtoken 1000.41d9xxxxxxxxxxxxxxxxxxxxxxxxc2d1.8fccxxxxxxxxxxxxxxxxxxxxxxxx125f");
response = invokeUrl
[
url: "https://www.zohoapis.in/erp/v3/manufacturingorders?organization_id=10234695"
type: GET
headers: headers_data
connection: <connection_name>
];
info response;
OkHttpClient client = new OkHttpClient();
Request request = new Request.Builder()
.url("https://www.zohoapis.in/erp/v3/manufacturingorders?organization_id=10234695")
.get()
.addHeader("Authorization", "Zoho-oauthtoken 1000.41d9xxxxxxxxxxxxxxxxxxxxxxxxc2d1.8fccxxxxxxxxxxxxxxxxxxxxxxxx125f")
.build();
Response response = client.newCall(request).execute();
const options = {
method: 'GET',
headers: {
Authorization: 'Zoho-oauthtoken 1000.41d9xxxxxxxxxxxxxxxxxxxxxxxxc2d1.8fccxxxxxxxxxxxxxxxxxxxxxxxx125f'
}
};
fetch('https://www.zohoapis.in/erp/v3/manufacturingorders?organization_id=10234695', options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));
import http.client
conn = http.client.HTTPSConnection("www.zohoapis.in")
headers = { 'Authorization': "Zoho-oauthtoken 1000.41d9xxxxxxxxxxxxxxxxxxxxxxxxc2d1.8fccxxxxxxxxxxxxxxxxxxxxxxxx125f" }
conn.request("GET", "/erp/v3/manufacturingorders?organization_id=10234695", headers=headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
const http = require("https");
const options = {
"method": "GET",
"hostname": "www.zohoapis.in",
"port": null,
"path": "/erp/v3/manufacturingorders?organization_id=10234695",
"headers": {
"Authorization": "Zoho-oauthtoken 1000.41d9xxxxxxxxxxxxxxxxxxxxxxxxc2d1.8fccxxxxxxxxxxxxxxxxxxxxxxxx125f"
}
};
const req = http.request(options, function (res) {
const chunks = [];
res.on("data", function (chunk) {
chunks.push(chunk);
});
res.on("end", function () {
const body = Buffer.concat(chunks);
console.log(body.toString());
});
});
req.end();
curl --request GET \
--url 'https://www.zohoapis.in/erp/v3/manufacturingorders?organization_id=10234695' \
--header 'Authorization: Zoho-oauthtoken 1000.41d9xxxxxxxxxxxxxxxxxxxxxxxxc2d1.8fccxxxxxxxxxxxxxxxxxxxxxxxx125f'
{
"code": 0,
"message": "success",
"manufacturingorders": [
{
"manufacturingorder_id": "3863095000000057231",
"manufacturingorder_number": "MFG-00017",
"status": "draft",
"billofmaterials_id": "3863095000000039154",
"billofmaterials_name": "Pencil BOM 3",
"version_id": "3863095000000039157",
"version_name": "v3",
"item_id": "3863095000000046004",
"item_name": "Bottle",
"finished_product_group_id": "",
"finished_product_group_name": "",
"finished_product_unit": "",
"sales_order_id": "",
"quantity": 50,
"completed_quantity": 8,
"posted_date": 1778610600000,
"planned_start_date": "2026-05-11",
"planned_end_date": "2026-05-15",
"actual_start_date": "",
"actual_end_date": "",
"owner_id": "",
"assigned_owner_name": "",
"parent_manufacturing_order_id": "",
"component_availability_status": "",
"created_time": "2026-05-13T14:19:35+0530",
"last_modified_time": "2026-05-13T14:19:35+0530",
"created_by_id": "340832000000139005",
"last_modified_by_id": "340832000000139005"
},
{...},
{...}
],
"page_context": {
"page": 1,
"per_page": 200,
"has_more_page": false,
"report_name": "Manufacturing Orders",
"applied_filter": "Status.All",
"sort_column": "created_time",
"sort_order": "D"
}
}
Update a manufacturing order
AI Tools
Open in ChatGPT
Open in ChatGPT to ask questions about this page
Open in Claude
Open in Claude to ask questions about this page
Copy as Markdown
Copy this page as markdown to use with AI assistants
View as Markdown
Open this page as markdown in a new tab
Open in ChatGPT
Open in ChatGPT to ask questions about this page
Open in Claude
Open in Claude to ask questions about this page
Copy as Markdown
Copy this page as markdown to use with AI assistants
View as Markdown
Open this page as markdown in a new tab
Update an existing manufacturing order.
OAuth Scope : ERP.manufacturing.UPDATE
Arguments
yyyy-MM-dd.Date format:
yyyy-MM-dd.MM:SS.draft, confirmed, released, inprogress, completed and canceled.Path Parameters
Query Parameters
parameters_data='{"field1":"value1","field2":"value2"}';
headers_data = Map();
headers_data.put("Authorization", "Zoho-oauthtoken 1000.41d9xxxxxxxxxxxxxxxxxxxxxxxxc2d1.8fccxxxxxxxxxxxxxxxxxxxxxxxx125f");
response = invokeUrl
[
url: "https://www.zohoapis.in/erp/v3/manufacturingorders/982000000567001?organization_id=10234695"
type: PUT
headers: headers_data
content-type: application/json
parameters: parameters_data
connection: <connection_name>
];
info response;
OkHttpClient client = new OkHttpClient();
MediaType mediaType = MediaType.parse("application/json");
RequestBody body = RequestBody.create(mediaType, "{\"field1\":\"value1\",\"field2\":\"value2\"}");
Request request = new Request.Builder()
.url("https://www.zohoapis.in/erp/v3/manufacturingorders/982000000567001?organization_id=10234695")
.put(body)
.addHeader("Authorization", "Zoho-oauthtoken 1000.41d9xxxxxxxxxxxxxxxxxxxxxxxxc2d1.8fccxxxxxxxxxxxxxxxxxxxxxxxx125f")
.addHeader("content-type", "application/json")
.build();
Response response = client.newCall(request).execute();
const options = {
method: 'PUT',
headers: {
Authorization: 'Zoho-oauthtoken 1000.41d9xxxxxxxxxxxxxxxxxxxxxxxxc2d1.8fccxxxxxxxxxxxxxxxxxxxxxxxx125f',
'content-type': 'application/json'
},
body: '{"field1":"value1","field2":"value2"}'
};
fetch('https://www.zohoapis.in/erp/v3/manufacturingorders/982000000567001?organization_id=10234695', options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));
import http.client
conn = http.client.HTTPSConnection("www.zohoapis.in")
payload = "{\"field1\":\"value1\",\"field2\":\"value2\"}"
headers = {
'Authorization': "Zoho-oauthtoken 1000.41d9xxxxxxxxxxxxxxxxxxxxxxxxc2d1.8fccxxxxxxxxxxxxxxxxxxxxxxxx125f",
'content-type': "application/json"
}
conn.request("PUT", "/erp/v3/manufacturingorders/982000000567001?organization_id=10234695", payload, headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
const http = require("https");
const options = {
"method": "PUT",
"hostname": "www.zohoapis.in",
"port": null,
"path": "/erp/v3/manufacturingorders/982000000567001?organization_id=10234695",
"headers": {
"Authorization": "Zoho-oauthtoken 1000.41d9xxxxxxxxxxxxxxxxxxxxxxxxc2d1.8fccxxxxxxxxxxxxxxxxxxxxxxxx125f",
"content-type": "application/json"
}
};
const req = http.request(options, function (res) {
const chunks = [];
res.on("data", function (chunk) {
chunks.push(chunk);
});
res.on("end", function () {
const body = Buffer.concat(chunks);
console.log(body.toString());
});
});
req.write(JSON.stringify({field1: 'value1', field2: 'value2'}));
req.end();
curl --request PUT \
--url 'https://www.zohoapis.in/erp/v3/manufacturingorders/982000000567001?organization_id=10234695' \
--header 'Authorization: Zoho-oauthtoken 1000.41d9xxxxxxxxxxxxxxxxxxxxxxxxc2d1.8fccxxxxxxxxxxxxxxxxxxxxxxxx125f' \
--header 'content-type: application/json' \
--data '{"field1":"value1","field2":"value2"}'
{
"manufacturingorder_number": "MFG-00017",
"item_id": "3863095000000046004",
"quantity": 50,
"billofmaterials_id": "3863095000000039154",
"version_id": "3863095000000039157",
"planned_start_date": "2026-05-11",
"planned_end_date": "2026-05-15",
"assigned_owner_id": "3863095000000032003",
"operations": [
{
"operation_id": "3863095000000039095",
"bom_operation_id": "3863095000000039163",
"lead_time": "00:18",
"instructions": ""
}
],
"components": [
{
"bom_component_id": "3863095000000039175",
"item_id": "3863095000000046015",
"description": "",
"quantity": 1,
"unit": "kg",
"subassembly_bom_id": ""
}
],
"custom_fields": [
{
"customfield_id": "982000000000183",
"value": "Batch-A"
}
],
"status": "draft",
"unit": "pcs",
"unit_conversion_id": ""
}
{
"code": 0,
"message": "Manufacturing Order Updated",
"manufacturingorder": {
"manufacturingorder_id": "3863095000000057231",
"manufacturingorder_number": "MFG-00017",
"item_id": "3863095000000046004",
"item_name": "Pencil",
"item_sku": "",
"quantity": 50,
"unit": "pcs",
"billofmaterials_id": "3863095000000039154",
"billofmaterials_name": "Pencil BOM 3",
"version_id": "3863095000000039157",
"version_name": "Pencil BOM 3 V1",
"status": "draft",
"completed_quantity": 0,
"assigned_owner_id": "3863095000000032003",
"assigned_owner_name": "",
"parent_manufacturing_order_id": "",
"parent_manufacturing_order_number": "",
"posted_date": "1778437800000",
"planned_start_date": "2026-05-11",
"planned_end_date": "2026-05-15",
"actual_start_date": "",
"actual_end_date": "",
"estimated_duration": "00:35:00",
"actual_duration": "00:00:00",
"total_jobcard_count": 0,
"completed_jobcard_count": 0,
"pending_jobcard_count": 0,
"custom_fields": [
{
"customfield_id": "982000000000183",
"value": "Batch-A"
}
],
"components": [
{
"mo_component_id": "3863095000000057238",
"bom_component_id": "3863095000000039175",
"item_id": "3863095000000046015",
"name": "Wood",
"item_sku": "WD-001",
"description": "",
"rate": 10,
"total_amount": 10,
"availability_status": "not_available",
"quantity": 1,
"quantity_available": -21.01,
"quantity_available_for_production": -22.02,
"quantity_consumed": 0,
"unit": "kg",
"subassembly_bom_id": "",
"item_type": "inventory",
"consumed_in_operation_id": "",
"consumed_in_operation_name": "",
"component_manufacturing_order_id": "",
"component_manufacturing_order_number": ""
}
],
"operations": [
{
"mo_operation_id": "3863095000000057234",
"operation_id": "3863095000000039095",
"operation_name": "Manufacturing OPR",
"bom_operation_id": "3863095000000039163",
"workcenter_type_id": "3863095000000039041",
"workcenter_type_name": "Manufacturing WCT",
"lead_time": "00:18",
"instructions": "",
"operation_cost": 1050,
"documents": [
{...}
]
}
],
"comments": [
{
"comment_id": "3863095000000057252",
"description": "Manufacturing order created",
"commented_by_id": "3863095000000032003",
"commented_by": "John Smith",
"comment_type": "system",
"date": "2026-05-11",
"date_description": "few seconds ago",
"time": "9:46 AM",
"operation_type": "Added",
"transaction_type": "manufacturingorder"
}
],
"quality_queue_status": "not_applicable"
}
}
Get a manufacturing order
AI Tools
Open in ChatGPT
Open in ChatGPT to ask questions about this page
Open in Claude
Open in Claude to ask questions about this page
Copy as Markdown
Copy this page as markdown to use with AI assistants
View as Markdown
Open this page as markdown in a new tab
Open in ChatGPT
Open in ChatGPT to ask questions about this page
Open in Claude
Open in Claude to ask questions about this page
Copy as Markdown
Copy this page as markdown to use with AI assistants
View as Markdown
Open this page as markdown in a new tab
Get the details of a manufacturing order.
OAuth Scope : ERP.manufacturing.READ
Path Parameters
Query Parameters
json and pdf.headers_data = Map();
headers_data.put("Authorization", "Zoho-oauthtoken 1000.41d9xxxxxxxxxxxxxxxxxxxxxxxxc2d1.8fccxxxxxxxxxxxxxxxxxxxxxxxx125f");
response = invokeUrl
[
url: "https://www.zohoapis.in/erp/v3/manufacturingorders/982000000567001?organization_id=10234695"
type: GET
headers: headers_data
connection: <connection_name>
];
info response;
OkHttpClient client = new OkHttpClient();
Request request = new Request.Builder()
.url("https://www.zohoapis.in/erp/v3/manufacturingorders/982000000567001?organization_id=10234695")
.get()
.addHeader("Authorization", "Zoho-oauthtoken 1000.41d9xxxxxxxxxxxxxxxxxxxxxxxxc2d1.8fccxxxxxxxxxxxxxxxxxxxxxxxx125f")
.build();
Response response = client.newCall(request).execute();
const options = {
method: 'GET',
headers: {
Authorization: 'Zoho-oauthtoken 1000.41d9xxxxxxxxxxxxxxxxxxxxxxxxc2d1.8fccxxxxxxxxxxxxxxxxxxxxxxxx125f'
}
};
fetch('https://www.zohoapis.in/erp/v3/manufacturingorders/982000000567001?organization_id=10234695', options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));
import http.client
conn = http.client.HTTPSConnection("www.zohoapis.in")
headers = { 'Authorization': "Zoho-oauthtoken 1000.41d9xxxxxxxxxxxxxxxxxxxxxxxxc2d1.8fccxxxxxxxxxxxxxxxxxxxxxxxx125f" }
conn.request("GET", "/erp/v3/manufacturingorders/982000000567001?organization_id=10234695", headers=headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
const http = require("https");
const options = {
"method": "GET",
"hostname": "www.zohoapis.in",
"port": null,
"path": "/erp/v3/manufacturingorders/982000000567001?organization_id=10234695",
"headers": {
"Authorization": "Zoho-oauthtoken 1000.41d9xxxxxxxxxxxxxxxxxxxxxxxxc2d1.8fccxxxxxxxxxxxxxxxxxxxxxxxx125f"
}
};
const req = http.request(options, function (res) {
const chunks = [];
res.on("data", function (chunk) {
chunks.push(chunk);
});
res.on("end", function () {
const body = Buffer.concat(chunks);
console.log(body.toString());
});
});
req.end();
curl --request GET \
--url 'https://www.zohoapis.in/erp/v3/manufacturingorders/982000000567001?organization_id=10234695' \
--header 'Authorization: Zoho-oauthtoken 1000.41d9xxxxxxxxxxxxxxxxxxxxxxxxc2d1.8fccxxxxxxxxxxxxxxxxxxxxxxxx125f'
{
"code": 0,
"message": "success",
"manufacturingorder": {
"manufacturingorder_id": "3863095000000057231",
"manufacturingorder_number": "MFG-00017",
"item_id": "3863095000000046004",
"item_name": "Pencil",
"item_sku": "",
"quantity": 50,
"unit": "pcs",
"billofmaterials_id": "3863095000000039154",
"billofmaterials_name": "Pencil BOM 3",
"version_id": "3863095000000039157",
"version_name": "Pencil BOM 3 V1",
"status": "draft",
"completed_quantity": 0,
"assigned_owner_id": "3863095000000032003",
"assigned_owner_name": "",
"parent_manufacturing_order_id": "",
"parent_manufacturing_order_number": "",
"posted_date": "1778437800000",
"planned_start_date": "2026-05-11",
"planned_end_date": "2026-05-15",
"actual_start_date": "",
"actual_end_date": "",
"estimated_duration": "00:35:00",
"actual_duration": "00:00:00",
"total_jobcard_count": 0,
"completed_jobcard_count": 0,
"pending_jobcard_count": 0,
"custom_fields": [
{
"customfield_id": "982000000000183",
"value": "Batch-A"
}
],
"components": [
{
"mo_component_id": "3863095000000057238",
"bom_component_id": "3863095000000039175",
"item_id": "3863095000000046015",
"name": "Wood",
"item_sku": "WD-001",
"description": "",
"rate": 10,
"total_amount": 10,
"availability_status": "not_available",
"quantity": 1,
"quantity_available": -21.01,
"quantity_available_for_production": -22.02,
"quantity_consumed": 0,
"unit": "kg",
"subassembly_bom_id": "",
"item_type": "inventory",
"consumed_in_operation_id": "",
"consumed_in_operation_name": "",
"component_manufacturing_order_id": "",
"component_manufacturing_order_number": ""
}
],
"operations": [
{
"mo_operation_id": "3863095000000057234",
"operation_id": "3863095000000039095",
"operation_name": "Manufacturing OPR",
"bom_operation_id": "3863095000000039163",
"workcenter_type_id": "3863095000000039041",
"workcenter_type_name": "Manufacturing WCT",
"lead_time": "00:18",
"instructions": "",
"operation_cost": 1050,
"documents": [
{...}
]
}
],
"comments": [
{
"comment_id": "3863095000000057252",
"description": "Manufacturing order created",
"commented_by_id": "3863095000000032003",
"commented_by": "John Smith",
"comment_type": "system",
"date": "2026-05-11",
"date_description": "few seconds ago",
"time": "9:46 AM",
"operation_type": "Added",
"transaction_type": "manufacturingorder"
}
],
"quality_queue_status": "not_applicable"
}
}
Delete a manufacturing order
AI Tools
Open in ChatGPT
Open in ChatGPT to ask questions about this page
Open in Claude
Open in Claude to ask questions about this page
Copy as Markdown
Copy this page as markdown to use with AI assistants
View as Markdown
Open this page as markdown in a new tab
Open in ChatGPT
Open in ChatGPT to ask questions about this page
Open in Claude
Open in Claude to ask questions about this page
Copy as Markdown
Copy this page as markdown to use with AI assistants
View as Markdown
Open this page as markdown in a new tab
Delete an existing manufacturing order.
OAuth Scope : ERP.manufacturing.DELETE
Path Parameters
Query Parameters
headers_data = Map();
headers_data.put("Authorization", "Zoho-oauthtoken 1000.41d9xxxxxxxxxxxxxxxxxxxxxxxxc2d1.8fccxxxxxxxxxxxxxxxxxxxxxxxx125f");
response = invokeUrl
[
url: "https://www.zohoapis.in/erp/v3/manufacturingorders/982000000567001?organization_id=10234695"
type: DELETE
headers: headers_data
connection: <connection_name>
];
info response;
OkHttpClient client = new OkHttpClient();
Request request = new Request.Builder()
.url("https://www.zohoapis.in/erp/v3/manufacturingorders/982000000567001?organization_id=10234695")
.delete(null)
.addHeader("Authorization", "Zoho-oauthtoken 1000.41d9xxxxxxxxxxxxxxxxxxxxxxxxc2d1.8fccxxxxxxxxxxxxxxxxxxxxxxxx125f")
.build();
Response response = client.newCall(request).execute();
const options = {
method: 'DELETE',
headers: {
Authorization: 'Zoho-oauthtoken 1000.41d9xxxxxxxxxxxxxxxxxxxxxxxxc2d1.8fccxxxxxxxxxxxxxxxxxxxxxxxx125f'
}
};
fetch('https://www.zohoapis.in/erp/v3/manufacturingorders/982000000567001?organization_id=10234695', options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));
import http.client
conn = http.client.HTTPSConnection("www.zohoapis.in")
headers = { 'Authorization': "Zoho-oauthtoken 1000.41d9xxxxxxxxxxxxxxxxxxxxxxxxc2d1.8fccxxxxxxxxxxxxxxxxxxxxxxxx125f" }
conn.request("DELETE", "/erp/v3/manufacturingorders/982000000567001?organization_id=10234695", headers=headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
const http = require("https");
const options = {
"method": "DELETE",
"hostname": "www.zohoapis.in",
"port": null,
"path": "/erp/v3/manufacturingorders/982000000567001?organization_id=10234695",
"headers": {
"Authorization": "Zoho-oauthtoken 1000.41d9xxxxxxxxxxxxxxxxxxxxxxxxc2d1.8fccxxxxxxxxxxxxxxxxxxxxxxxx125f"
}
};
const req = http.request(options, function (res) {
const chunks = [];
res.on("data", function (chunk) {
chunks.push(chunk);
});
res.on("end", function () {
const body = Buffer.concat(chunks);
console.log(body.toString());
});
});
req.end();
curl --request DELETE \
--url 'https://www.zohoapis.in/erp/v3/manufacturingorders/982000000567001?organization_id=10234695' \
--header 'Authorization: Zoho-oauthtoken 1000.41d9xxxxxxxxxxxxxxxxxxxxxxxxc2d1.8fccxxxxxxxxxxxxxxxxxxxxxxxx125f'
{
"code": 0,
"message": "The manufacturing order has been deleted."
}
Update manufacturing order status
AI Tools
Open in ChatGPT
Open in ChatGPT to ask questions about this page
Open in Claude
Open in Claude to ask questions about this page
Copy as Markdown
Copy this page as markdown to use with AI assistants
View as Markdown
Open this page as markdown in a new tab
Open in ChatGPT
Open in ChatGPT to ask questions about this page
Open in Claude
Open in Claude to ask questions about this page
Copy as Markdown
Copy this page as markdown to use with AI assistants
View as Markdown
Open this page as markdown in a new tab
Update the status of a manufacturing order.
OAuth Scope : ERP.manufacturing.UPDATE
Arguments
draft, confirmed, released, inprogress, completed and canceled.Path Parameters
Query Parameters
parameters_data='{"field1":"value1","field2":"value2"}';
headers_data = Map();
headers_data.put("Authorization", "Zoho-oauthtoken 1000.41d9xxxxxxxxxxxxxxxxxxxxxxxxc2d1.8fccxxxxxxxxxxxxxxxxxxxxxxxx125f");
response = invokeUrl
[
url: "https://www.zohoapis.in/erp/v3/manufacturingorders/982000000567001/status?organization_id=10234695"
type: PUT
headers: headers_data
content-type: application/json
parameters: parameters_data
connection: <connection_name>
];
info response;
OkHttpClient client = new OkHttpClient();
MediaType mediaType = MediaType.parse("application/json");
RequestBody body = RequestBody.create(mediaType, "{\"field1\":\"value1\",\"field2\":\"value2\"}");
Request request = new Request.Builder()
.url("https://www.zohoapis.in/erp/v3/manufacturingorders/982000000567001/status?organization_id=10234695")
.put(body)
.addHeader("Authorization", "Zoho-oauthtoken 1000.41d9xxxxxxxxxxxxxxxxxxxxxxxxc2d1.8fccxxxxxxxxxxxxxxxxxxxxxxxx125f")
.addHeader("content-type", "application/json")
.build();
Response response = client.newCall(request).execute();
const options = {
method: 'PUT',
headers: {
Authorization: 'Zoho-oauthtoken 1000.41d9xxxxxxxxxxxxxxxxxxxxxxxxc2d1.8fccxxxxxxxxxxxxxxxxxxxxxxxx125f',
'content-type': 'application/json'
},
body: '{"field1":"value1","field2":"value2"}'
};
fetch('https://www.zohoapis.in/erp/v3/manufacturingorders/982000000567001/status?organization_id=10234695', options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));
import http.client
conn = http.client.HTTPSConnection("www.zohoapis.in")
payload = "{\"field1\":\"value1\",\"field2\":\"value2\"}"
headers = {
'Authorization': "Zoho-oauthtoken 1000.41d9xxxxxxxxxxxxxxxxxxxxxxxxc2d1.8fccxxxxxxxxxxxxxxxxxxxxxxxx125f",
'content-type': "application/json"
}
conn.request("PUT", "/erp/v3/manufacturingorders/982000000567001/status?organization_id=10234695", payload, headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
const http = require("https");
const options = {
"method": "PUT",
"hostname": "www.zohoapis.in",
"port": null,
"path": "/erp/v3/manufacturingorders/982000000567001/status?organization_id=10234695",
"headers": {
"Authorization": "Zoho-oauthtoken 1000.41d9xxxxxxxxxxxxxxxxxxxxxxxxc2d1.8fccxxxxxxxxxxxxxxxxxxxxxxxx125f",
"content-type": "application/json"
}
};
const req = http.request(options, function (res) {
const chunks = [];
res.on("data", function (chunk) {
chunks.push(chunk);
});
res.on("end", function () {
const body = Buffer.concat(chunks);
console.log(body.toString());
});
});
req.write(JSON.stringify({field1: 'value1', field2: 'value2'}));
req.end();
curl --request PUT \
--url 'https://www.zohoapis.in/erp/v3/manufacturingorders/982000000567001/status?organization_id=10234695' \
--header 'Authorization: Zoho-oauthtoken 1000.41d9xxxxxxxxxxxxxxxxxxxxxxxxc2d1.8fccxxxxxxxxxxxxxxxxxxxxxxxx125f' \
--header 'content-type: application/json' \
--data '{"field1":"value1","field2":"value2"}'
{
"status": "draft"
}
{
"code": 0,
"message": "Manufacturing Order status updated.",
"manufacturingorder": {
"manufacturingorder_id": "3863095000000057231",
"manufacturingorder_number": "MFG-00017",
"item_id": "3863095000000046004",
"item_name": "Pencil",
"item_sku": "",
"quantity": 50,
"unit": "pcs",
"billofmaterials_id": "3863095000000039154",
"billofmaterials_name": "Pencil BOM 3",
"version_id": "3863095000000039157",
"version_name": "Pencil BOM 3 V1",
"status": "draft",
"completed_quantity": 0,
"assigned_owner_id": "3863095000000032003",
"assigned_owner_name": "",
"parent_manufacturing_order_id": "",
"parent_manufacturing_order_number": "",
"posted_date": "1778437800000",
"planned_start_date": "2026-05-11",
"planned_end_date": "2026-05-15",
"actual_start_date": "",
"actual_end_date": "",
"estimated_duration": "00:35:00",
"actual_duration": "00:00:00",
"total_jobcard_count": 0,
"completed_jobcard_count": 0,
"pending_jobcard_count": 0,
"custom_fields": [
{
"customfield_id": "982000000000183",
"value": "Batch-A"
}
],
"components": [
{
"mo_component_id": "3863095000000057238",
"bom_component_id": "3863095000000039175",
"item_id": "3863095000000046015",
"name": "Wood",
"item_sku": "WD-001",
"description": "",
"rate": 10,
"total_amount": 10,
"availability_status": "not_available",
"quantity": 1,
"quantity_available": -21.01,
"quantity_available_for_production": -22.02,
"quantity_consumed": 0,
"unit": "kg",
"subassembly_bom_id": "",
"item_type": "inventory",
"consumed_in_operation_id": "",
"consumed_in_operation_name": "",
"component_manufacturing_order_id": "",
"component_manufacturing_order_number": ""
}
],
"operations": [
{
"mo_operation_id": "3863095000000057234",
"operation_id": "3863095000000039095",
"operation_name": "Manufacturing OPR",
"bom_operation_id": "3863095000000039163",
"workcenter_type_id": "3863095000000039041",
"workcenter_type_name": "Manufacturing WCT",
"lead_time": "00:18",
"instructions": "",
"operation_cost": 1050,
"documents": [
{...}
]
}
],
"comments": [
{
"comment_id": "3863095000000057252",
"description": "Manufacturing order created",
"commented_by_id": "3863095000000032003",
"commented_by": "John Smith",
"comment_type": "system",
"date": "2026-05-11",
"date_description": "few seconds ago",
"time": "9:46 AM",
"operation_type": "Added",
"transaction_type": "manufacturingorder"
}
],
"quality_queue_status": "not_applicable"
}
}
Add a comment
AI Tools
Open in ChatGPT
Open in ChatGPT to ask questions about this page
Open in Claude
Open in Claude to ask questions about this page
Copy as Markdown
Copy this page as markdown to use with AI assistants
View as Markdown
Open this page as markdown in a new tab
Open in ChatGPT
Open in ChatGPT to ask questions about this page
Open in Claude
Open in Claude to ask questions about this page
Copy as Markdown
Copy this page as markdown to use with AI assistants
View as Markdown
Open this page as markdown in a new tab
Add a comment to a manufacturing order.
OAuth Scope : ERP.manufacturing.CREATE
Arguments
Path Parameters
Query Parameters
parameters_data='{"field1":"value1","field2":"value2"}';
headers_data = Map();
headers_data.put("Authorization", "Zoho-oauthtoken 1000.41d9xxxxxxxxxxxxxxxxxxxxxxxxc2d1.8fccxxxxxxxxxxxxxxxxxxxxxxxx125f");
response = invokeUrl
[
url: "https://www.zohoapis.in/erp/v3/manufacturingorders/982000000567001/comments?organization_id=10234695"
type: POST
headers: headers_data
content-type: application/json
parameters: parameters_data
connection: <connection_name>
];
info response;
OkHttpClient client = new OkHttpClient();
MediaType mediaType = MediaType.parse("application/json");
RequestBody body = RequestBody.create(mediaType, "{\"field1\":\"value1\",\"field2\":\"value2\"}");
Request request = new Request.Builder()
.url("https://www.zohoapis.in/erp/v3/manufacturingorders/982000000567001/comments?organization_id=10234695")
.post(body)
.addHeader("Authorization", "Zoho-oauthtoken 1000.41d9xxxxxxxxxxxxxxxxxxxxxxxxc2d1.8fccxxxxxxxxxxxxxxxxxxxxxxxx125f")
.addHeader("content-type", "application/json")
.build();
Response response = client.newCall(request).execute();
const options = {
method: 'POST',
headers: {
Authorization: 'Zoho-oauthtoken 1000.41d9xxxxxxxxxxxxxxxxxxxxxxxxc2d1.8fccxxxxxxxxxxxxxxxxxxxxxxxx125f',
'content-type': 'application/json'
},
body: '{"field1":"value1","field2":"value2"}'
};
fetch('https://www.zohoapis.in/erp/v3/manufacturingorders/982000000567001/comments?organization_id=10234695', options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));
import http.client
conn = http.client.HTTPSConnection("www.zohoapis.in")
payload = "{\"field1\":\"value1\",\"field2\":\"value2\"}"
headers = {
'Authorization': "Zoho-oauthtoken 1000.41d9xxxxxxxxxxxxxxxxxxxxxxxxc2d1.8fccxxxxxxxxxxxxxxxxxxxxxxxx125f",
'content-type': "application/json"
}
conn.request("POST", "/erp/v3/manufacturingorders/982000000567001/comments?organization_id=10234695", payload, headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
const http = require("https");
const options = {
"method": "POST",
"hostname": "www.zohoapis.in",
"port": null,
"path": "/erp/v3/manufacturingorders/982000000567001/comments?organization_id=10234695",
"headers": {
"Authorization": "Zoho-oauthtoken 1000.41d9xxxxxxxxxxxxxxxxxxxxxxxxc2d1.8fccxxxxxxxxxxxxxxxxxxxxxxxx125f",
"content-type": "application/json"
}
};
const req = http.request(options, function (res) {
const chunks = [];
res.on("data", function (chunk) {
chunks.push(chunk);
});
res.on("end", function () {
const body = Buffer.concat(chunks);
console.log(body.toString());
});
});
req.write(JSON.stringify({field1: 'value1', field2: 'value2'}));
req.end();
curl --request POST \
--url 'https://www.zohoapis.in/erp/v3/manufacturingorders/982000000567001/comments?organization_id=10234695' \
--header 'Authorization: Zoho-oauthtoken 1000.41d9xxxxxxxxxxxxxxxxxxxxxxxxc2d1.8fccxxxxxxxxxxxxxxxxxxxxxxxx125f' \
--header 'content-type: application/json' \
--data '{"field1":"value1","field2":"value2"}'
{
"code": 0,
"message": "Comment added.",
"comment": {
"comment_id": "3863095000000057252",
"description": "Manufacturing order created",
"commented_by_id": "3863095000000032003",
"commented_by": "John Smith",
"comment_type": "system",
"date": "2026-05-11",
"date_description": "few seconds ago",
"time": "9:46 AM",
"operation_type": "Added",
"transaction_type": "manufacturingorder"
}
}
List comments and history
AI Tools
Open in ChatGPT
Open in ChatGPT to ask questions about this page
Open in Claude
Open in Claude to ask questions about this page
Copy as Markdown
Copy this page as markdown to use with AI assistants
View as Markdown
Open this page as markdown in a new tab
Open in ChatGPT
Open in ChatGPT to ask questions about this page
Open in Claude
Open in Claude to ask questions about this page
Copy as Markdown
Copy this page as markdown to use with AI assistants
View as Markdown
Open this page as markdown in a new tab
List all comments of a manufacturing order.
OAuth Scope : ERP.manufacturing.READ
Path Parameters
Query Parameters
headers_data = Map();
headers_data.put("Authorization", "Zoho-oauthtoken 1000.41d9xxxxxxxxxxxxxxxxxxxxxxxxc2d1.8fccxxxxxxxxxxxxxxxxxxxxxxxx125f");
response = invokeUrl
[
url: "https://www.zohoapis.in/erp/v3/manufacturingorders/982000000567001/comments?organization_id=10234695"
type: GET
headers: headers_data
connection: <connection_name>
];
info response;
OkHttpClient client = new OkHttpClient();
Request request = new Request.Builder()
.url("https://www.zohoapis.in/erp/v3/manufacturingorders/982000000567001/comments?organization_id=10234695")
.get()
.addHeader("Authorization", "Zoho-oauthtoken 1000.41d9xxxxxxxxxxxxxxxxxxxxxxxxc2d1.8fccxxxxxxxxxxxxxxxxxxxxxxxx125f")
.build();
Response response = client.newCall(request).execute();
const options = {
method: 'GET',
headers: {
Authorization: 'Zoho-oauthtoken 1000.41d9xxxxxxxxxxxxxxxxxxxxxxxxc2d1.8fccxxxxxxxxxxxxxxxxxxxxxxxx125f'
}
};
fetch('https://www.zohoapis.in/erp/v3/manufacturingorders/982000000567001/comments?organization_id=10234695', options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));
import http.client
conn = http.client.HTTPSConnection("www.zohoapis.in")
headers = { 'Authorization': "Zoho-oauthtoken 1000.41d9xxxxxxxxxxxxxxxxxxxxxxxxc2d1.8fccxxxxxxxxxxxxxxxxxxxxxxxx125f" }
conn.request("GET", "/erp/v3/manufacturingorders/982000000567001/comments?organization_id=10234695", headers=headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
const http = require("https");
const options = {
"method": "GET",
"hostname": "www.zohoapis.in",
"port": null,
"path": "/erp/v3/manufacturingorders/982000000567001/comments?organization_id=10234695",
"headers": {
"Authorization": "Zoho-oauthtoken 1000.41d9xxxxxxxxxxxxxxxxxxxxxxxxc2d1.8fccxxxxxxxxxxxxxxxxxxxxxxxx125f"
}
};
const req = http.request(options, function (res) {
const chunks = [];
res.on("data", function (chunk) {
chunks.push(chunk);
});
res.on("end", function () {
const body = Buffer.concat(chunks);
console.log(body.toString());
});
});
req.end();
curl --request GET \
--url 'https://www.zohoapis.in/erp/v3/manufacturingorders/982000000567001/comments?organization_id=10234695' \
--header 'Authorization: Zoho-oauthtoken 1000.41d9xxxxxxxxxxxxxxxxxxxxxxxxc2d1.8fccxxxxxxxxxxxxxxxxxxxxxxxx125f'
{
"code": 0,
"message": "success",
"comments": [
{
"comment_id": "3863095000000057252",
"description": "Manufacturing order created",
"commented_by_id": "3863095000000032003",
"commented_by": "John Smith",
"comment_type": "system",
"date": "2026-05-11",
"date_description": "few seconds ago",
"time": "9:46 AM",
"operation_type": "Added",
"transaction_type": "manufacturingorder"
},
{...},
{...}
]
}
Delete a comment
AI Tools
Open in ChatGPT
Open in ChatGPT to ask questions about this page
Open in Claude
Open in Claude to ask questions about this page
Copy as Markdown
Copy this page as markdown to use with AI assistants
View as Markdown
Open this page as markdown in a new tab
Open in ChatGPT
Open in ChatGPT to ask questions about this page
Open in Claude
Open in Claude to ask questions about this page
Copy as Markdown
Copy this page as markdown to use with AI assistants
View as Markdown
Open this page as markdown in a new tab
Delete a comment from a manufacturing order.
OAuth Scope : ERP.manufacturing.DELETE
Path Parameters
Query Parameters
headers_data = Map();
headers_data.put("Authorization", "Zoho-oauthtoken 1000.41d9xxxxxxxxxxxxxxxxxxxxxxxxc2d1.8fccxxxxxxxxxxxxxxxxxxxxxxxx125f");
response = invokeUrl
[
url: "https://www.zohoapis.in/erp/v3/manufacturingorders/982000000567001/comments/982000000567211?organization_id=10234695"
type: DELETE
headers: headers_data
connection: <connection_name>
];
info response;
OkHttpClient client = new OkHttpClient();
Request request = new Request.Builder()
.url("https://www.zohoapis.in/erp/v3/manufacturingorders/982000000567001/comments/982000000567211?organization_id=10234695")
.delete(null)
.addHeader("Authorization", "Zoho-oauthtoken 1000.41d9xxxxxxxxxxxxxxxxxxxxxxxxc2d1.8fccxxxxxxxxxxxxxxxxxxxxxxxx125f")
.build();
Response response = client.newCall(request).execute();
const options = {
method: 'DELETE',
headers: {
Authorization: 'Zoho-oauthtoken 1000.41d9xxxxxxxxxxxxxxxxxxxxxxxxc2d1.8fccxxxxxxxxxxxxxxxxxxxxxxxx125f'
}
};
fetch('https://www.zohoapis.in/erp/v3/manufacturingorders/982000000567001/comments/982000000567211?organization_id=10234695', options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));
import http.client
conn = http.client.HTTPSConnection("www.zohoapis.in")
headers = { 'Authorization': "Zoho-oauthtoken 1000.41d9xxxxxxxxxxxxxxxxxxxxxxxxc2d1.8fccxxxxxxxxxxxxxxxxxxxxxxxx125f" }
conn.request("DELETE", "/erp/v3/manufacturingorders/982000000567001/comments/982000000567211?organization_id=10234695", headers=headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
const http = require("https");
const options = {
"method": "DELETE",
"hostname": "www.zohoapis.in",
"port": null,
"path": "/erp/v3/manufacturingorders/982000000567001/comments/982000000567211?organization_id=10234695",
"headers": {
"Authorization": "Zoho-oauthtoken 1000.41d9xxxxxxxxxxxxxxxxxxxxxxxxc2d1.8fccxxxxxxxxxxxxxxxxxxxxxxxx125f"
}
};
const req = http.request(options, function (res) {
const chunks = [];
res.on("data", function (chunk) {
chunks.push(chunk);
});
res.on("end", function () {
const body = Buffer.concat(chunks);
console.log(body.toString());
});
});
req.end();
curl --request DELETE \
--url 'https://www.zohoapis.in/erp/v3/manufacturingorders/982000000567001/comments/982000000567211?organization_id=10234695' \
--header 'Authorization: Zoho-oauthtoken 1000.41d9xxxxxxxxxxxxxxxxxxxxxxxxc2d1.8fccxxxxxxxxxxxxxxxxxxxxxxxx125f'
{
"code": 0,
"message": "The comment has been deleted."
}
{ "description": "Production started for batch 1." }