Skip to main content
GET
/
v1
/
organizations
/
{organization}
/
slots
/
{id}
Show Slot
curl --request GET \
  --url https://api.aspect-dev.systems/v1/organizations/{organization}/slots/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "<string>",
    "attributes": {
      "id": "<string>",
      "date_time": "<string>",
      "remaining_capacity": 123
    },
    "relationships": {
      "division": {
        "data": {
          "id": "<string>"
        }
      },
      "location": {
        "data": {
          "id": "<string>"
        }
      },
      "schedule": {
        "data": {
          "id": "<string>"
        }
      },
      "rates": {
        "data": [
          {
            "id": "<string>"
          }
        ]
      },
      "tags": {
        "data": [
          {
            "id": "<string>"
          }
        ]
      },
      "entries": {
        "data": [
          {
            "id": "<string>"
          }
        ]
      }
    }
  },
  "included": [
    {
      "id": "<string>",
      "attributes": {
        "id": "<string>",
        "name": "<string>"
      }
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.aspect.systems/llms.txt

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

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

organization
string
required
id
string
required

Query Parameters

include
string

Available includes are division, location, schedule, rates, tags, entries. You can include multiple options by separating them with a comma.

Response

Slot

data
Slot · object
required
included
(Division · object | Location · object | Schedule · object | Rate · object | Tag · object | Entry · object)[]