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
14 changes: 14 additions & 0 deletions src/lib/seam/connect/openapi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29900,6 +29900,15 @@ export default {
description: 'Gets an Access Grant.',
operationId: 'accessGrantsListGet',
parameters: [
{
in: 'query',
name: 'access_grant_id',
schema: {
description: 'ID of the access grant to retrieve.',
format: 'uuid',
type: 'string',
},
},
{
in: 'query',
name: 'customer_key',
Expand Down Expand Up @@ -30043,6 +30052,11 @@ export default {
'application/json': {
schema: {
properties: {
access_grant_id: {
description: 'ID of the access grant to retrieve.',
format: 'uuid',
type: 'string',
},
access_grant_key: {
description: 'Filter Access Grants by access_grant_key.',
type: 'string',
Expand Down
2 changes: 2 additions & 0 deletions src/lib/seam/connect/route-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13545,6 +13545,8 @@ export type Routes = {
queryParams: {}
jsonBody: {}
commonParams: {
/** ID of the access grant to retrieve. */
access_grant_id?: string | undefined
/** Customer key for which you want to list access grants. */
customer_key?: string | undefined
/** Numerical limit on the number of access grants to return. */
Expand Down