Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
90 changes: 89 additions & 1 deletion docs/api/_blueprint.json
Original file line number Diff line number Diff line change
Expand Up @@ -55282,12 +55282,100 @@
],
"workspaceScope": "required",
"codeSamples": []
},
{
"title": "List Reservations for Space",
"name": "list_reservations",
"path": "/seam/customer/v1/spaces/list_reservations",
"parentPath": "/seam/customer/v1/spaces",
"description": "Returns a list of existing reservations for a specific space.\nIf issued_status is \"issued\", only reservations that have access methods issued will be returned.\nIf issued_status is \"pending\", only reservations that do not have access methods issued will be returned.\nIf issued_status is not provided, only reservations that do not have access methods issued will be returned.",
"isDeprecated": false,
"deprecationMessage": "",
"isUndocumented": true,
"undocumentedMessage": "Internal endpoint for customer portals.",
"isDraft": false,
"draftMessage": "",
"response": {
"responseType": "resource_list",
"responseKey": "reservations",
"resourceType": "unknown",
"description": "OK",
"actionAttemptType": null,
"batchResourceTypes": null
},
"request": {
"methods": [
"GET",
"POST"
],
"semanticMethod": "GET",
"preferredMethod": "POST",
"parameters": [
{
"name": "issued_status",
"description": "Filter reservations by issued status.",
"isRequired": false,
"isDeprecated": false,
"deprecationMessage": "",
"isUndocumented": false,
"undocumentedMessage": "",
"isDraft": false,
"draftMessage": "",
"hasDefault": true,
"default": "pending",
"format": "enum",
"jsonType": "string",
"values": [
{
"name": "issued",
"description": "",
"isDeprecated": false,
"deprecationMessage": "",
"isUndocumented": false,
"undocumentedMessage": "",
"isDraft": false,
"draftMessage": ""
},
{
"name": "pending",
"description": "",
"isDeprecated": false,
"deprecationMessage": "",
"isUndocumented": false,
"undocumentedMessage": "",
"isDraft": false,
"draftMessage": ""
}
]
},
{
"name": "space_key",
"description": "Filter reservations by space key.",
"isRequired": true,
"isDeprecated": false,
"deprecationMessage": "",
"isUndocumented": false,
"undocumentedMessage": "",
"isDraft": false,
"draftMessage": "",
"hasDefault": false,
"format": "string",
"jsonType": "string"
}
]
},
"hasPagination": false,
"authMethods": [
"client_session_token"
],
"workspaceScope": "required",
"codeSamples": []
}
],
"parentPath": "/seam/customer/v1",
"isUndocumented": true,
"isDeprecated": false,
"isDraft": true
"isDraft": false
},
{
"path": "/seam/customer/v1/staff_members",
Expand Down
3 changes: 2 additions & 1 deletion docs/api/_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ These items are intentionally undocumented.
- `/seam/customer/v1/settings/update`: Internal endpoint for customer portals.
- `/seam/customer/v1/spaces/create`: Only used internally.
- `/seam/customer/v1/spaces/list`: Only used internally.
- `/seam/customer/v1/spaces/list_reservations`: Internal endpoint for customer portals.
- `/seam/customer/v1/staff_members/get`: Internal endpoint for customer portals.
- `/seam/customer/v1/staff_members/list`: Internal endpoint for customer portals.
- `/seam/instant_key/v1/client_sessions/exchange_short_code`: Seam Instant Key only.
Expand Down Expand Up @@ -470,7 +471,6 @@ These items have been marked as draft.
- `/access_grants`: No draft message provided
- `/access_grants/unmanaged`: No draft message provided
- `/access_methods/unmanaged`: No draft message provided
- `/seam/customer/v1/spaces`: No draft message provided
- `/spaces`: No draft message provided

### Endpoints
Expand Down Expand Up @@ -643,6 +643,7 @@ These items are deprecated.
- `/seam/customer/v1/reservations/get`: `reservation`
- `/seam/customer/v1/reservations/list`: `reservations`
- `/seam/customer/v1/settings/get`: `business_vertical`
- `/seam/customer/v1/spaces/list_reservations`: `reservations`
- `/seam/customer/v1/staff_members/get`: `staff_member`
- `/seam/customer/v1/staff_members/list`: `staff_members`
- `/seam/instant_key/v1/preview/get`: `instant_key_preview`
Expand Down
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"@prettier/plugin-ruby": "^4.0.4",
"@seamapi/blueprint": "^0.52.2",
"@seamapi/smith": "^0.5.2",
"@seamapi/types": "1.661.0",
"@seamapi/types": "1.662.0",
"@types/command-exists": "^1.2.3",
"change-case": "^5.4.4",
"command-exists": "^1.2.9",
Expand Down
Loading