Skip to main content
GET
/
api
/
spaces
/
resourcetimeslots
/
commands
Commands for ResourceTimeSlots
curl --request GET \
  --url https://spaces.nexudus.com/api/spaces/resourcetimeslots/commands \
  --header 'Authorization: Basic <encoded-value>'

Documentation Index

Fetch the complete documentation index at: https://learn.nexudus.com/llms.txt

Use this file to discover all available pages before exploring further.

Commands for ResourceTimeSlots

This endpoint lets you get the list of available commands for Resource Time Slot records.

Authentication

This endpoint requires OAuth2 authentication. Include a valid bearer token in the Authorization header.

Query Parameters

id
integer (int32)
If provided, only commands available for this Resource Time Slot will be returned.

Response

Example Response
[
  {
    "Key": "COMMAND_KEY_1",
    "Name": "Command name",
    "AppliesOnlyToMultipleEntities": false,
    "DisplayInDropdown": false,
    "DisplayInDropdownV2": true,
    "AppliesOnlyToOneEntity": true,
    "AppliesOnlyToTwoEntities": false,
    "DisplayInGrid": false,
    "Icon": "/Content/Themes/Admin/Images/Icons/Fugue/gear.png",
    "NeedsEntitiesToRun": true,
    "Order": 8,
    "RequiresParameters": [
      {
        "Name": "Parameter name",
        "Type": "parameterType"
      }
    ]
  }
]

Example Request

curl -X GET \
  "https://spaces.nexudus.com/api/spaces/resourcetimeslots/commands" \
  -H "Authorization: Bearer YOUR_TOKEN"