File tree Expand file tree Collapse file tree 2 files changed +36
-0
lines changed
Expand file tree Collapse file tree 2 files changed +36
-0
lines changed Original file line number Diff line number Diff line change @@ -34992,6 +34992,16 @@ export default {
3499234992 type: 'string',
3499334993 },
3499434994 },
34995+ {
34996+ in: 'query',
34997+ name: 'access_code_id',
34998+ schema: {
34999+ description:
35000+ 'ID of the access code by which you want to filter the list of Access Grants.',
35001+ format: 'uuid',
35002+ type: 'string',
35003+ },
35004+ },
3499535005 {
3499635006 in: 'query',
3499735007 name: 'access_grant_key',
@@ -35057,6 +35067,12 @@ export default {
3505735067 'application/json': {
3505835068 schema: {
3505935069 properties: {
35070+ access_code_id: {
35071+ description:
35072+ 'ID of the access code by which you want to filter the list of Access Grants.',
35073+ format: 'uuid',
35074+ type: 'string',
35075+ },
3506035076 access_grant_ids: {
3506135077 description: 'IDs of the access grants to retrieve.',
3506235078 items: { format: 'uuid', type: 'string' },
@@ -38733,6 +38749,16 @@ export default {
3873338749 type: 'string',
3873438750 },
3873538751 },
38752+ {
38753+ in: 'query',
38754+ name: 'access_code_id',
38755+ schema: {
38756+ description:
38757+ 'ID of the access code for which you want to retrieve all access methods.',
38758+ format: 'uuid',
38759+ type: 'string',
38760+ },
38761+ },
3873638762 ],
3873738763 responses: {
3873838764 200: {
@@ -38780,6 +38806,12 @@ export default {
3878038806 'application/json': {
3878138807 schema: {
3878238808 properties: {
38809+ access_code_id: {
38810+ description:
38811+ 'ID of the access code for which you want to retrieve all access methods.',
38812+ format: 'uuid',
38813+ type: 'string',
38814+ },
3878338815 access_grant_id: {
3878438816 description:
3878538817 'ID of Access Grant to list access methods for.',
Original file line number Diff line number Diff line change @@ -14794,6 +14794,8 @@ export type Routes = {
1479414794 location_id?: string | undefined
1479514795 /** ID of the space by which you want to filter the list of Access Grants. */
1479614796 space_id?: string | undefined
14797+ /** ID of the access code by which you want to filter the list of Access Grants. */
14798+ access_code_id?: string | undefined
1479714799 /** Filter Access Grants by access_grant_key. Use null to filter for Access Grants without an access_grant_key. */
1479814800 access_grant_key?: (string | null) | undefined
1479914801 /** Filter Access Grants by reservation_key. */
@@ -19708,6 +19710,8 @@ export type Routes = {
1970819710 acs_entrance_id?: string | undefined
1970919711 /** ID of the space for which you want to retrieve all access methods. */
1971019712 space_id?: string | undefined
19713+ /** ID of the access code for which you want to retrieve all access methods. */
19714+ access_code_id?: string | undefined
1971119715 }
1971219716 formData: {}
1971319717 jsonResponse: {
You can’t perform that action at this time.
0 commit comments