🚧 The Rhombus Developer Documentation is currently in beta. For the official documentation, please visit docs.rhombus.com.
curl --request POST \
--url https://api2.rhombussystems.com/api/schedule/getSchedules \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '{}'{
"absoluteSchedules": [
{
"intervalList": [
{
"b": 123,
"e": 123
}
],
"mutable": true,
"name": "<string>",
"oneTimeUse": true,
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"strategy": "WEEKLY_REPEATING_MINUTES",
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
],
"error": true,
"errorMsg": "<string>",
"relativeDatetimeSchedules": [
{
"intervals": [
{
"localEndDateTime": "<string>",
"localStartDateTime": "<string>"
}
],
"mutable": true,
"name": "<string>",
"oneTimeUse": true,
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"strategy": "WEEKLY_REPEATING_MINUTES",
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
],
"relativeSchedules": [
{
"pastSeconds": 123,
"mutable": true,
"name": "<string>",
"oneTimeUse": true,
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"strategy": "WEEKLY_REPEATING_MINUTES",
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
],
"warningMsg": "<string>",
"weeklySchedules": [
{
"intervalList": [
{
"minuteOfWeekStart": 123,
"minuteOfWeekStop": 123
}
],
"mutable": true,
"name": "<string>",
"oneTimeUse": true,
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"strategy": "WEEKLY_REPEATING_MINUTES",
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
]
}Get schedules in org
curl --request POST \
--url https://api2.rhombussystems.com/api/schedule/getSchedules \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '{}'{
"absoluteSchedules": [
{
"intervalList": [
{
"b": 123,
"e": 123
}
],
"mutable": true,
"name": "<string>",
"oneTimeUse": true,
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"strategy": "WEEKLY_REPEATING_MINUTES",
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
],
"error": true,
"errorMsg": "<string>",
"relativeDatetimeSchedules": [
{
"intervals": [
{
"localEndDateTime": "<string>",
"localStartDateTime": "<string>"
}
],
"mutable": true,
"name": "<string>",
"oneTimeUse": true,
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"strategy": "WEEKLY_REPEATING_MINUTES",
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
],
"relativeSchedules": [
{
"pastSeconds": 123,
"mutable": true,
"name": "<string>",
"oneTimeUse": true,
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"strategy": "WEEKLY_REPEATING_MINUTES",
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
],
"warningMsg": "<string>",
"weeklySchedules": [
{
"intervalList": [
{
"minuteOfWeekStart": 123,
"minuteOfWeekStop": 123
}
],
"mutable": true,
"name": "<string>",
"oneTimeUse": true,
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"strategy": "WEEKLY_REPEATING_MINUTES",
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
]
}Your API key for Rhombus.
Authentication scheme indicator ("api-token").
9Request object for getting all schedules.
OK
Response object for getting all schedules.
List of absolute schedules
Show child attributes
List of relative datetime intervals schedules
Show child attributes
List of relative schedules
Show child attributes
List of weekly repeating schedules
Show child attributes
Was this page helpful?