Create New Schedule Deviation
Retrieve the Schedule List
Request
Add parameter in header x-api-key
Example:x-api-key: ********************
Add parameter in header x-api-env
Example:x-api-env: ********************
or
Body Params application/json
{
"description": "string",
"type": "other",
"start_date": "2019-08-24",
"end_date": "2019-08-24",
"time": 0,
"external_ref": "string"
}
Request Code Samples
curl --location --request POST 'https://api.vplan.com/v1/resource//schedule_deviation/?limit=100&offset=0&filter=&sort=&show=&hide=' \
--header 'Content-Type: application/json' \
--header 'x-api-key;' \
--header 'x-api-env;' \
--data-raw '{
"description": "string",
"type": "other",
"start_date": "2019-08-24",
"end_date": "2019-08-24",
"time": 0,
"external_ref": "string"
}'
Responses
application/json {
"count": 1,
"limit": 100,
"offset": 0,
"data": [
{
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"date": "2019-08-24",
"hours_available": 0,
"hours_work": 0,
"hours_leave": 0,
"hours_absence": 0,
"resource_id": "4d5215ed-38bb-48ed-879a-fdb9ca58522f",
"created_at": "2024-04-11T10:22:15Z",
"updated_at": "2024-04-11T10:22:15Z"
}
]
}
Modified at 2025-05-26 13:17:55