Skip to content
Open
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
51 changes: 51 additions & 0 deletions mintlify/openapi.yaml

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

51 changes: 51 additions & 0 deletions openapi.yaml

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

29 changes: 29 additions & 0 deletions openapi/paths/platform/platform_external_accounts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,21 @@ get:
required: false
schema:
type: string
- name: limit
in: query
description: Maximum number of results to return (default 20, max 100)
required: false
schema:
type: integer
minimum: 1
maximum: 100
default: 20
- name: cursor
in: query
description: Cursor for pagination (returned from previous request)
required: false
schema:
type: string
responses:
'200':
description: Successful operation
Expand All @@ -25,12 +40,26 @@ get:
type: object
required:
- data
- hasMore
properties:
data:
type: array
description: List of external accounts matching the filter criteria
items:
$ref: ../../components/schemas/external_accounts/ExternalAccount.yaml
hasMore:
type: boolean
description: Indicates if more results are available beyond this page
nextCursor:
type: string
description: >-
Cursor to retrieve the next page of results (only present if
hasMore is true)
totalCount:
type: integer
description: >-
Total number of external accounts matching the criteria (excluding
pagination)
'400':
description: Bad request - Invalid parameters
content:
Expand Down
29 changes: 29 additions & 0 deletions openapi/paths/platform/platform_internal_accounts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,21 @@ get:
required: false
schema:
type: string
- name: limit
in: query
description: Maximum number of results to return (default 20, max 100)
required: false
schema:
type: integer
minimum: 1
maximum: 100
default: 20
- name: cursor
in: query
description: Cursor for pagination (returned from previous request)
required: false
schema:
type: string
responses:
"200":
description: Successful operation
Expand All @@ -25,12 +40,26 @@ get:
type: object
required:
- data
- hasMore
properties:
data:
type: array
description: List of internal accounts matching the filter criteria
items:
$ref: ../../components/schemas/customers/InternalAccount.yaml
hasMore:
type: boolean
description: Indicates if more results are available beyond this page
nextCursor:
type: string
description: >-
Cursor to retrieve the next page of results (only present if
hasMore is true)
totalCount:
type: integer
description: >-
Total number of internal accounts matching the criteria (excluding
pagination)
"400":
description: Bad request - Invalid parameters
content:
Expand Down