Indicator
Category
A category is the property or attribute of an appointment that determines the color in which an appointment is displayed. The category is used to provide an immediate visual insight in the type or status of appointments.
Upsert
Inserts or updates a category record.
Name | Data Type | Default | Required |
---|---|---|---|
CategoryName | nvarchar(100) | ✔️ | |
DisplayName | nvarchar(100) | CategoryName | |
CategoryHexColor | nvarchar(50) | ||
ColorR | int | ||
ColorG | int | ||
ColorB | int |
- Import
- API
- This endpoint is available in the import API endpoint
/import
via the proceduremboc_upsertCategory
. - Example body:
[
{
"StoredProcedureName": "mboc_upsertCategory",
"ParameterNames": ["CategoryName", "DisplayName", "CategoryHexColor"],
"ParameterValues": ["INPROGRESS", "In Progress", "#6e64b5"]
}
]
- Endpoint:
/category
- Supported HTTP methods: POST (create) and PUT (update)
Rename category
Renames the category.
Name | Data Type | Default | Required |
---|---|---|---|
CategoryName | nvarchar(100) | ✔️ | |
NewCategoryName | nvarchar(100) | ✔️ |
- Import
- API
- This endpoint is available in the import API endpoint
/import
via the proceduremboc_renameCategory
. - Example body:
[
{
"StoredProcedureName": "mboc_renameCategory",
"ParameterNames": ["CategoryName", "NewCategoryName"],
"ParameterValues": ["INPROCESSTYPO", "INPROCESS"]
}
]
This endpoint is not available yet.
Delete category
Removes this indicator from the database.
Name | Data Type | Default | Required |
---|---|---|---|
CategoryName | nvarchar(100) | ✔️ |
- Import
- API
- This endpoint is available in the import API endpoint
/import
via the proceduremboc_deleteCategory
. - Example body:
[
{
"StoredProcedureName": "mboc_deleteCategory",
"ParameterNames": ["CategoryName"],
"ParameterValues": ["INPROCESS"]
}
]
- Endpoint:
/category
- Supported HTTP methods: DELETE
Time Marker
A time marker is the property or attribute of an appointment that determines the colored bar displayed below the appointment in the planning board. The time marker is used to provide an immediate visual insight in the type or status of appointments.
Upsert time marker
Inserts or updates a time marker record.
Name | Data Type | Default | Required |
---|---|---|---|
TimeMarker | nvarchar(100) | ✔️ | |
HexColor | nvarchar(50) | ||
ColorR | int | ||
ColorG | int | ||
ColorB | int |
- Import
- API
- This endpoint is available in the import API endpoint
/import
via the proceduremboc_upsertTimeMarker
. - Example body:
[
{
"StoredProcedureName": "mboc_upsertTimeMarker",
"ParameterNames": ["TimeMarker", "HexColor"],
"ParameterValues": ["In Progress", "#6e64b5"]
}
]
- Endpoint:
/timeMarker
- Supported HTTP methods: POST (create) and PUT (update)
Rename time marker
Renames the time marker.
Name | Data Type | Default | Required |
---|---|---|---|
TimeMarker | nvarchar(100) | ✔️ | |
NewTimeMarker | nvarchar(100) | ✔️ |
- Import
- API
- This endpoint is available in the import API endpoint
/import
via the proceduremboc_renameTimeMarker
. - Example body:
[
{
"StoredProcedureName": "mboc_renameTimeMarker",
"ParameterNames": ["TimeMarker", "NewTimeMarker"],
"ParameterValues": ["INPROCESSTYPO", "INPROCESS"]
}
]
This endpoint is not available yet.
Delete time marker
Removes this indicator from the database.
Name | Data Type | Default | Required |
---|---|---|---|
TimeMarker | nvarchar(100) | ✔️ |
- Import
- API
- This endpoint is available in the import API endpoint
/import
via the proceduremboc_deleteTimeMarker
. - Example body:
[
{
"StoredProcedureName": "mboc_deleteTimeMarker",
"ParameterNames": ["TimeMarker"],
"ParameterValues": ["INPROCESS"]
}
]
- Endpoint:
/timeMarker
- Supported HTTP methods: DELETE
Pin
A pin is the property or attribute of an appointment that determines the colored pin on the map.
Upsert pin
Inserts or updates a pin record.
Name | Data Type | Default | Required |
---|---|---|---|
Name | nvarchar(100) | ✔️ | |
HexColor | nvarchar(50) | ||
ColorR | int | ||
ColorG | int | ||
ColorB | int |
- Import
- API
- This endpoint is available in the import API endpoint
/import
via the proceduremboc_upsertPin
. - Example body:
[
{
"StoredProcedureName": "mboc_upsertPin",
"ParameterNames": ["Name", "HexColor"],
"ParameterValues": ["In Progress", "#6e64b5"]
}
]
- Endpoint:
/pin
- Supported HTTP methods: POST (create) and PUT (update)
Rename pin
Renames the pin.
Name | Data Type | Default | Required |
---|---|---|---|
Name | nvarchar(100) | ✔️ | |
NewName | nvarchar(100) | ✔️ |
- Import
- API
- This endpoint is available in the import API endpoint
/import
via the proceduremboc_renamePin
. - Example body:
[
{
"StoredProcedureName": "mboc_renamePin",
"ParameterNames": ["Name", "NewName"],
"ParameterValues": ["INPROCESSTYPO", "INPROCESS"]
}
]
This endpoint is not available yet.
Delete pin
Removes the indicator from the database.
Name | Data Type | Default | Required |
---|---|---|---|
Name | nvarchar(30) | ✔️ |
- Import
- API
- This endpoint is available in the import API endpoint
/import
via the proceduremboc_deletePin
. - Example body:
[
{
"StoredProcedureName": "mboc_deletePin",
"ParameterNames": ["Name"],
"ParameterValues": ["INPROCESS"]
}
]
- Endpoint:
/pin
- Supported HTTP methods: DELETE