- General
- Endpoints
Retrieve Schedule List
GET
/resource/{resource_id}/schedule
Schedule
Request
Path Params
resource_id
string <uuid>
required
Query Params
filter
string
optional
sort
string
optional
show
string
optional
hide
string
optional
Header Params
x-api-key
string
required
Default:
{{api_key}}
x-api-env
string
required
Default:
{{api_env}}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.vplan.com/v1/resource//schedule?limit=100&offset=0&filter=&sort=&show=&hide=' \
--header 'x-api-key;' \
--header 'x-api-env;'
Responses
🟢200Ok
application/json
Body
count
integer <uint64>
optional
>= 0
Default:
1
limit
integer <uint64>
optional
>= 0<= 1000
Default:
100
offset
integer <uint64>
optional
>= 0
Default:
0
data
array[object (Schedule) {9}]
required
id
string <uuid>
read-onlyoptional
date
string <date>
optional
hours_available
number <double>
optional
hours_work
number <double>
optional
hours_leave
number <double>
optional
hours_absence
number <double>
optional
resource_id
string <uuid>
optional
created_at
string <date-time>
read-onlyoptional
Example:
2024-04-11T10:22:15Z
updated_at
string <date-time>
read-onlyoptional
Example:
2024-04-11T10:22:15Z
Example
{
"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"
}
]
}
🟠404Not Found
🟠401Not Logged In
Modified at 2024-10-04 09:04:55