Work Center Timings
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
Work center timings define the working days and operating hours of a work center. They are used to schedule manufacturing operations during available working hours and to plan production capacity. A timing configuration can be standard (the same schedule each week) or alternating (different schedules across Week 1 and Week 2), and can include up to three break intervals per day.
Attribute
work_center.standard (same schedule every week) and alternating (alternates between two weekly schedules).sunday, monday, tuesday, wednesday, thursday, friday, and saturday.true) or a non-working day (false).HH:MM. Present only when is_working is true.HH:MM. Present only when is_working is true.HH:MM.HH:MM.type is alternating.sunday, monday, tuesday, wednesday, thursday, friday, and saturday.true) or a non-working day (false).HH:MM. Present only when is_working is true.HH:MM. Present only when is_working is true.HH:MM.HH:MM.sunday, monday, tuesday, wednesday, thursday, friday, and saturday.fullday, halfday, and leave.fullday, halfday, and leave.fullday, halfday, and leave.fullday, halfday, and leave.fullday, halfday, and leave.{
"workcalendar_id": "3863095000000067001",
"workcalendar_version_id": "3863095000000067002",
"workcalendar_name": "Company Work Center Timing",
"source": "work_center",
"type": "standard",
"breaks_count": [
{}
],
"workweekdays": {
"week1": [
{
"day_id": "3863095000000067005",
"day_name": "monday",
"is_working": true,
"start_time": "09:00",
"end_time": "18:00",
"breaks": [
{
"break_id": "3863095000000067051",
"break_name": "Lunch Break",
"start_time": "13:00",
"end_time": "14:00"
}
]
}
],
"week2": [
{
"day_id": "3863095000000067005",
"day_name": "monday",
"is_working": true,
"start_time": "09:00",
"end_time": "18:00",
"breaks": [
{
"break_id": "3863095000000067051",
"break_name": "Lunch Break",
"start_time": "13:00",
"end_time": "14:00"
}
]
}
]
},
"weeks": [
{
"workcalendar_session_id": "3863095000000067012",
"day_of_week": "monday",
"working_weeks": {
"week1": "fullday",
"week2": "fullday",
"week3": "fullday",
"week4": "fullday",
"week5": "fullday"
}
}
]
}
Create a work center timing
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 work center timing.
OAuth Scope : ERP.manufacturing.CREATE
Arguments
work_center.standard (same schedule every week) and alternating (alternates between two weekly schedules).source is work_center.sunday, monday, tuesday, wednesday, thursday, friday, and saturday.true) or a non-working day (false).is_working is true. Format: HH:MM.is_working is true. Format: HH:MM.is_working is true. Pass an empty array if no breaks are required. Maximum: 100 breaks per day.HH:MM.HH:MM.type is alternating. Must contain exactly 7 entries, one per day of the week.sunday, monday, tuesday, wednesday, thursday, friday, and saturday.true) or a non-working day (false).is_working is true. Format: HH:MM.is_working is true. Format: HH:MM.is_working is true. Pass an empty array if no breaks are required. Maximum: 100 breaks per day.HH:MM.HH:MM.sunday, monday, tuesday, wednesday, thursday, friday, and saturday.fullday, halfday, and leave.fullday, halfday, and leave.fullday, halfday, and leave.fullday, halfday, and leave.fullday, halfday, and leave.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/v1/workcentertimings?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/v1/workcentertimings?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/v1/workcentertimings?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/v1/workcentertimings?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/v1/workcentertimings?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/v1/workcentertimings?organization_id=10234695' \
--header 'Authorization: Zoho-oauthtoken 1000.41d9xxxxxxxxxxxxxxxxxxxxxxxxc2d1.8fccxxxxxxxxxxxxxxxxxxxxxxxx125f' \
--header 'content-type: application/json' \
--data '{"field1":"value1","field2":"value2"}'
{
"workcalendar_name": "Sample Work Center Timing",
"source": "work_center",
"type": "standard",
"workweekdays": {
"week1": [
{
"day_name": "sunday",
"start_time": "09:00",
"end_time": "18:00",
"breaks": [],
"is_working": true
},
{
"day_name": "monday",
"start_time": "09:00",
"end_time": "18:00",
"breaks": [],
"is_working": true
},
{
"day_name": "tuesday",
"start_time": "09:00",
"end_time": "18:00",
"breaks": [],
"is_working": true
},
{
"day_name": "wednesday",
"start_time": "09:00",
"end_time": "18:00",
"breaks": [],
"is_working": true
},
{
"day_name": "thursday",
"start_time": "09:00",
"end_time": "18:00",
"breaks": [],
"is_working": true
},
{
"day_name": "friday",
"start_time": "09:00",
"end_time": "18:00",
"breaks": [],
"is_working": true
},
{
"day_name": "saturday",
"start_time": "09:00",
"end_time": "18:00",
"breaks": [],
"is_working": true
}
]
},
"weeks": [
{
"day_of_week": "sunday",
"working_weeks": {
"week1": "fullday",
"week2": "fullday",
"week3": "fullday",
"week4": "fullday",
"week5": "fullday"
}
},
{
"day_of_week": "monday",
"working_weeks": {
"week1": "fullday",
"week2": "fullday",
"week3": "fullday",
"week4": "fullday",
"week5": "fullday"
}
},
{
"day_of_week": "tuesday",
"working_weeks": {
"week1": "fullday",
"week2": "fullday",
"week3": "fullday",
"week4": "fullday",
"week5": "fullday"
}
},
{
"day_of_week": "wednesday",
"working_weeks": {
"week1": "fullday",
"week2": "fullday",
"week3": "fullday",
"week4": "fullday",
"week5": "fullday"
}
},
{
"day_of_week": "thursday",
"working_weeks": {
"week1": "fullday",
"week2": "fullday",
"week3": "fullday",
"week4": "fullday",
"week5": "fullday"
}
},
{
"day_of_week": "friday",
"working_weeks": {
"week1": "fullday",
"week2": "fullday",
"week3": "fullday",
"week4": "fullday",
"week5": "fullday"
}
},
{
"day_of_week": "saturday",
"working_weeks": {
"week1": "fullday",
"week2": "fullday",
"week3": "fullday",
"week4": "fullday",
"week5": "fullday"
}
}
]
}
{
"code": 0,
"message": "WorkCalendar created successfully",
"data": {
"workcalendar_id": "3863095000000067001",
"workcalendar_version_id": "3863095000000067002",
"workcalendar_name": "Company Work Center Timing",
"source": "work_center",
"type": "standard",
"breaks_count": [],
"workweekdays": {
"week1": [
{
"day_name": "sunday",
"day_id": "3863095000000067004",
"is_working": true,
"start_time": "09:00",
"end_time": "18:00",
"breaks": []
},
{
"day_name": "monday",
"day_id": "3863095000000067005",
"is_working": true,
"start_time": "09:00",
"end_time": "18:00",
"breaks": []
},
{
"day_name": "tuesday",
"day_id": "3863095000000067006",
"is_working": true,
"start_time": "09:00",
"end_time": "18:00",
"breaks": []
},
{
"day_name": "wednesday",
"day_id": "3863095000000067007",
"is_working": true,
"start_time": "09:00",
"end_time": "18:00",
"breaks": []
},
{
"day_name": "thursday",
"day_id": "3863095000000067008",
"is_working": true,
"start_time": "09:00",
"end_time": "18:00",
"breaks": []
},
{
"day_name": "friday",
"day_id": "3863095000000067009",
"is_working": true,
"start_time": "09:00",
"end_time": "18:00",
"breaks": []
},
{
"day_name": "saturday",
"day_id": "3863095000000067010",
"is_working": true,
"start_time": "09:00",
"end_time": "18:00",
"breaks": []
}
]
},
"weeks": [
{
"workcalendar_session_id": "3863095000000067011",
"day_of_week": "sunday",
"working_weeks": {
"week1": "fullday",
"week2": "fullday",
"week3": "fullday",
"week4": "fullday",
"week5": "fullday"
}
},
{
"workcalendar_session_id": "3863095000000067012",
"day_of_week": "monday",
"working_weeks": {
"week1": "fullday",
"week2": "fullday",
"week3": "fullday",
"week4": "fullday",
"week5": "fullday"
}
},
{
"workcalendar_session_id": "3863095000000067013",
"day_of_week": "tuesday",
"working_weeks": {
"week1": "fullday",
"week2": "fullday",
"week3": "fullday",
"week4": "fullday",
"week5": "fullday"
}
},
{
"workcalendar_session_id": "3863095000000067014",
"day_of_week": "wednesday",
"working_weeks": {
"week1": "fullday",
"week2": "fullday",
"week3": "fullday",
"week4": "fullday",
"week5": "fullday"
}
},
{
"workcalendar_session_id": "3863095000000067015",
"day_of_week": "thursday",
"working_weeks": {
"week1": "fullday",
"week2": "fullday",
"week3": "fullday",
"week4": "fullday",
"week5": "fullday"
}
},
{
"workcalendar_session_id": "3863095000000067016",
"day_of_week": "friday",
"working_weeks": {
"week1": "fullday",
"week2": "fullday",
"week3": "fullday",
"week4": "fullday",
"week5": "fullday"
}
},
{
"workcalendar_session_id": "3863095000000067017",
"day_of_week": "saturday",
"working_weeks": {
"week1": "fullday",
"week2": "fullday",
"week3": "fullday",
"week4": "fullday",
"week5": "fullday"
}
}
]
}
}
List work center timings
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 work center timings.
OAuth Scope : ERP.manufacturing.READ
Query Parameters
workcalendar_name.A (ascending) and D (descending).headers_data = Map();
headers_data.put("Authorization", "Zoho-oauthtoken 1000.41d9xxxxxxxxxxxxxxxxxxxxxxxxc2d1.8fccxxxxxxxxxxxxxxxxxxxxxxxx125f");
response = invokeUrl
[
url: "https://www.zohoapis.in/erp/v1/workcentertimings?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/v1/workcentertimings?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/v1/workcentertimings?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/v1/workcentertimings?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/v1/workcentertimings?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/v1/workcentertimings?organization_id=10234695' \
--header 'Authorization: Zoho-oauthtoken 1000.41d9xxxxxxxxxxxxxxxxxxxxxxxxc2d1.8fccxxxxxxxxxxxxxxxxxxxxxxxx125f'
{
"code": 0,
"message": "success",
"work_calendars": [
{
"workcalendar_id": "3863095000000067001",
"workcalendar_version_id": "3863095000000067002",
"workcalendar_name": "Company Work Center Timing",
"source": "work_center",
"type": "standard",
"is_default": false,
"created_time": "2026-01-19T01:06:42+0530",
"last_modified_time": "2026-01-19T01:06:42+0530"
},
{...},
{...}
],
"page_context": {
"page": 1,
"per_page": 200,
"has_more_page": false,
"report_name": "Work Center Timings",
"sort_column": "workcalendar_name",
"sort_order": "A"
}
}
Update a work center timing
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 work center timing.
OAuth Scope : ERP.manufacturing.UPDATE
Arguments
work_center.standard (same schedule every week) and alternating (alternates between two weekly schedules).sunday, monday, tuesday, wednesday, thursday, friday, and saturday.true) or a non-working day (false).is_working is true. Format: HH:MM.is_working is true. Format: HH:MM.is_working is true. Pass an empty array if no breaks are required. Maximum: 100 breaks per day.HH:MM.HH:MM.type is alternating. Must contain exactly 7 entries, one per day of the week.sunday, monday, tuesday, wednesday, thursday, friday, and saturday.true) or a non-working day (false).is_working is true. Format: HH:MM.is_working is true. Format: HH:MM.is_working is true. Pass an empty array if no breaks are required. Maximum: 100 breaks per day.HH:MM.HH:MM.sunday, monday, tuesday, wednesday, thursday, friday, and saturday.fullday, halfday, and leave.fullday, halfday, and leave.fullday, halfday, and leave.fullday, halfday, and leave.fullday, halfday, and leave.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/v1/workcentertimings/3863095000000067001?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/v1/workcentertimings/3863095000000067001?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/v1/workcentertimings/3863095000000067001?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/v1/workcentertimings/3863095000000067001?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/v1/workcentertimings/3863095000000067001?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/v1/workcentertimings/3863095000000067001?organization_id=10234695' \
--header 'Authorization: Zoho-oauthtoken 1000.41d9xxxxxxxxxxxxxxxxxxxxxxxxc2d1.8fccxxxxxxxxxxxxxxxxxxxxxxxx125f' \
--header 'content-type: application/json' \
--data '{"field1":"value1","field2":"value2"}'
{
"workcalendar_name": "Work Calendar",
"source": "work_center",
"type": "standard",
"workweekdays": {
"week1": [
{
"day_name": "sunday",
"day_id": "3863095000000040004",
"is_working": true,
"start_time": "09:00",
"end_time": "18:00",
"breaks": []
},
{
"day_name": "monday",
"day_id": "3863095000000040005",
"is_working": true,
"start_time": "09:00",
"end_time": "18:00",
"breaks": []
},
{
"day_name": "tuesday",
"day_id": "3863095000000040006",
"is_working": true,
"start_time": "09:00",
"end_time": "18:00",
"breaks": []
},
{
"day_name": "wednesday",
"day_id": "3863095000000040007",
"is_working": true,
"start_time": "09:00",
"end_time": "18:00",
"breaks": []
},
{
"day_name": "thursday",
"day_id": "3863095000000040008",
"is_working": true,
"start_time": "09:00",
"end_time": "18:00",
"breaks": []
},
{
"day_name": "friday",
"day_id": "3863095000000040009",
"is_working": true,
"start_time": "09:00",
"end_time": "18:00",
"breaks": []
},
{
"day_name": "saturday",
"day_id": "3863095000000040010",
"is_working": true,
"start_time": "09:00",
"end_time": "18:00",
"breaks": []
}
]
},
"weeks": [
{
"day_of_week": "sunday",
"working_weeks": {
"week1": "fullday",
"week2": "fullday",
"week3": "fullday",
"week4": "fullday",
"week5": "fullday"
},
"workcalendar_session_id": "3863095000000040011"
},
{
"day_of_week": "monday",
"working_weeks": {
"week1": "fullday",
"week2": "fullday",
"week3": "fullday",
"week4": "fullday",
"week5": "fullday"
},
"workcalendar_session_id": "3863095000000040012"
},
{
"day_of_week": "tuesday",
"working_weeks": {
"week1": "fullday",
"week2": "fullday",
"week3": "fullday",
"week4": "fullday",
"week5": "fullday"
},
"workcalendar_session_id": "3863095000000040013"
},
{
"day_of_week": "wednesday",
"working_weeks": {
"week1": "fullday",
"week2": "fullday",
"week3": "fullday",
"week4": "fullday",
"week5": "fullday"
},
"workcalendar_session_id": "3863095000000040014"
},
{
"day_of_week": "thursday",
"working_weeks": {
"week1": "fullday",
"week2": "fullday",
"week3": "fullday",
"week4": "fullday",
"week5": "fullday"
},
"workcalendar_session_id": "3863095000000040015"
},
{
"day_of_week": "friday",
"working_weeks": {
"week1": "fullday",
"week2": "fullday",
"week3": "fullday",
"week4": "fullday",
"week5": "fullday"
},
"workcalendar_session_id": "3863095000000040016"
},
{
"day_of_week": "saturday",
"working_weeks": {
"week1": "fullday",
"week2": "fullday",
"week3": "fullday",
"week4": "fullday",
"week5": "fullday"
},
"workcalendar_session_id": "3863095000000040017"
}
]
}
{
"code": 0,
"message": "WorkCalendar updated successfully",
"data": {
"workcalendar_id": "3863095000000040001",
"workcalendar_version_id": "3863095000000040002",
"workcalendar_name": "Work Calendar",
"source": "work_center",
"type": "standard",
"breaks_count": [],
"workweekdays": {
"week1": [
{
"day_name": "sunday",
"day_id": "3863095000000040004",
"is_working": true,
"start_time": "09:00",
"end_time": "18:00",
"breaks": []
},
{
"day_name": "monday",
"day_id": "3863095000000040005",
"is_working": true,
"start_time": "09:00",
"end_time": "18:00",
"breaks": []
},
{
"day_name": "tuesday",
"day_id": "3863095000000040006",
"is_working": true,
"start_time": "09:00",
"end_time": "18:00",
"breaks": []
},
{
"day_name": "wednesday",
"day_id": "3863095000000040007",
"is_working": true,
"start_time": "09:00",
"end_time": "18:00",
"breaks": []
},
{
"day_name": "thursday",
"day_id": "3863095000000040008",
"is_working": true,
"start_time": "09:00",
"end_time": "18:00",
"breaks": []
},
{
"day_name": "friday",
"day_id": "3863095000000040009",
"is_working": true,
"start_time": "09:00",
"end_time": "18:00",
"breaks": []
},
{
"day_name": "saturday",
"day_id": "3863095000000040010",
"is_working": true,
"start_time": "09:00",
"end_time": "18:00",
"breaks": []
}
]
},
"weeks": [
{
"workcalendar_session_id": "3863095000000040011",
"day_of_week": "sunday",
"working_weeks": {
"week1": "fullday",
"week2": "fullday",
"week3": "fullday",
"week4": "fullday",
"week5": "fullday"
}
},
{
"workcalendar_session_id": "3863095000000040012",
"day_of_week": "monday",
"working_weeks": {
"week1": "fullday",
"week2": "fullday",
"week3": "fullday",
"week4": "fullday",
"week5": "fullday"
}
},
{
"workcalendar_session_id": "3863095000000040013",
"day_of_week": "tuesday",
"working_weeks": {
"week1": "fullday",
"week2": "fullday",
"week3": "fullday",
"week4": "fullday",
"week5": "fullday"
}
},
{
"workcalendar_session_id": "3863095000000040014",
"day_of_week": "wednesday",
"working_weeks": {
"week1": "fullday",
"week2": "fullday",
"week3": "fullday",
"week4": "fullday",
"week5": "fullday"
}
},
{
"workcalendar_session_id": "3863095000000040015",
"day_of_week": "thursday",
"working_weeks": {
"week1": "fullday",
"week2": "fullday",
"week3": "fullday",
"week4": "fullday",
"week5": "fullday"
}
},
{
"workcalendar_session_id": "3863095000000040016",
"day_of_week": "friday",
"working_weeks": {
"week1": "fullday",
"week2": "fullday",
"week3": "fullday",
"week4": "fullday",
"week5": "fullday"
}
},
{
"workcalendar_session_id": "3863095000000040017",
"day_of_week": "saturday",
"working_weeks": {
"week1": "fullday",
"week2": "fullday",
"week3": "fullday",
"week4": "fullday",
"week5": "fullday"
}
}
]
}
}
Get a work center timing
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 work center timing.
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/v1/workcentertimings/3863095000000067001?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/v1/workcentertimings/3863095000000067001?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/v1/workcentertimings/3863095000000067001?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/v1/workcentertimings/3863095000000067001?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/v1/workcentertimings/3863095000000067001?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/v1/workcentertimings/3863095000000067001?organization_id=10234695' \
--header 'Authorization: Zoho-oauthtoken 1000.41d9xxxxxxxxxxxxxxxxxxxxxxxxc2d1.8fccxxxxxxxxxxxxxxxxxxxxxxxx125f'
{
"code": 0,
"message": "success",
"data": {
"workcalendar_id": "3863095000000067001",
"workcalendar_version_id": "3863095000000067002",
"workcalendar_name": "Company Work Center Timing",
"source": "work_center",
"type": "standard",
"breaks_count": [
{...}
],
"workweekdays": {
"week1": [
{
"day_id": "3863095000000067005",
"day_name": "monday",
"is_working": true,
"start_time": "09:00",
"end_time": "18:00",
"breaks": [
{
"break_id": "3863095000000067051",
"break_name": "Lunch Break",
"start_time": "13:00",
"end_time": "14:00"
}
]
}
],
"week2": [
{
"day_id": "3863095000000067005",
"day_name": "monday",
"is_working": true,
"start_time": "09:00",
"end_time": "18:00",
"breaks": [
{
"break_id": "3863095000000067051",
"break_name": "Lunch Break",
"start_time": "13:00",
"end_time": "14:00"
}
]
}
]
},
"weeks": [
{
"workcalendar_session_id": "3863095000000067012",
"day_of_week": "monday",
"working_weeks": {
"week1": "fullday",
"week2": "fullday",
"week3": "fullday",
"week4": "fullday",
"week5": "fullday"
}
}
]
}
}
Delete a work center timing
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 work center timing. Work center timings assigned to a work center cannot be deleted.
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/v1/workcentertimings/3863095000000067001?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/v1/workcentertimings/3863095000000067001?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/v1/workcentertimings/3863095000000067001?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/v1/workcentertimings/3863095000000067001?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/v1/workcentertimings/3863095000000067001?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/v1/workcentertimings/3863095000000067001?organization_id=10234695' \
--header 'Authorization: Zoho-oauthtoken 1000.41d9xxxxxxxxxxxxxxxxxxxxxxxxc2d1.8fccxxxxxxxxxxxxxxxxxxxxxxxx125f'
{
"code": 0,
"message": "The work center timing has been deleted."
}
Get a work center timing version
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 specific version of a work center timing.
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/v1/workcentertimings/3863095000000067001/version/3863095000000067002?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/v1/workcentertimings/3863095000000067001/version/3863095000000067002?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/v1/workcentertimings/3863095000000067001/version/3863095000000067002?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/v1/workcentertimings/3863095000000067001/version/3863095000000067002?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/v1/workcentertimings/3863095000000067001/version/3863095000000067002?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/v1/workcentertimings/3863095000000067001/version/3863095000000067002?organization_id=10234695' \
--header 'Authorization: Zoho-oauthtoken 1000.41d9xxxxxxxxxxxxxxxxxxxxxxxxc2d1.8fccxxxxxxxxxxxxxxxxxxxxxxxx125f'
{
"code": 0,
"message": "success",
"data": {
"workcalendar_id": "3863095000000067001",
"workcalendar_version_id": "3863095000000067002",
"workcalendar_name": "Company Work Center Timing",
"source": "work_center",
"type": "standard",
"breaks_count": [
{...}
],
"workweekdays": {
"week1": [
{
"day_id": "3863095000000067005",
"day_name": "monday",
"is_working": true,
"start_time": "09:00",
"end_time": "18:00",
"breaks": [
{
"break_id": "3863095000000067051",
"break_name": "Lunch Break",
"start_time": "13:00",
"end_time": "14:00"
}
]
}
],
"week2": [
{
"day_id": "3863095000000067005",
"day_name": "monday",
"is_working": true,
"start_time": "09:00",
"end_time": "18:00",
"breaks": [
{
"break_id": "3863095000000067051",
"break_name": "Lunch Break",
"start_time": "13:00",
"end_time": "14:00"
}
]
}
]
},
"weeks": [
{
"workcalendar_session_id": "3863095000000067012",
"day_of_week": "monday",
"working_weeks": {
"week1": "fullday",
"week2": "fullday",
"week3": "fullday",
"week4": "fullday",
"week5": "fullday"
}
}
]
}
}