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: 38 additions & 13 deletions mintlify/openapi.yaml

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

51 changes: 38 additions & 13 deletions openapi.yaml

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

13 changes: 13 additions & 0 deletions openapi/components/schemas/common/GridError.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
type: object
title: GridError
properties:
code:
type: string
description: Error code
message:
type: string
description: Error message
details:
type: object
description: Additional error details
additionalProperties: true
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
allOf:
- $ref: ../common/GridError.yaml
- type: object
description: Error information for a failed bulk import entry
required:
- correlationId
properties:
correlationId:
type: string
description: Platform customer ID or row number for the failed entry
example: biz456
12 changes: 1 addition & 11 deletions openapi/components/schemas/customers/BulkCustomerImportJob.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,17 +45,7 @@ properties:
type: array
description: Detailed error information for failed entries
items:
type: object
required:
- correlationId
- error
properties:
correlationId:
type: string
description: Platform customer ID or row number for the failed entry
example: biz456
error:
$ref: ../common/Error.yaml
$ref: BulkCustomerImportErrorEntry.yaml
completedAt:
type: string
format: date-time
Expand Down
1 change: 1 addition & 0 deletions openapi/components/schemas/errors/Error400.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,3 +74,4 @@ properties:
details:
type: object
description: Additional error details
additionalProperties: true
1 change: 1 addition & 0 deletions openapi/components/schemas/errors/Error401.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,4 @@ properties:
details:
type: object
description: Additional error details
additionalProperties: true
1 change: 1 addition & 0 deletions openapi/components/schemas/errors/Error403.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,4 @@ properties:
details:
type: object
description: Additional error details
additionalProperties: true
1 change: 1 addition & 0 deletions openapi/components/schemas/errors/Error404.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,4 @@ properties:
details:
type: object
description: Additional error details
additionalProperties: true
1 change: 1 addition & 0 deletions openapi/components/schemas/errors/Error409.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,4 @@ properties:
details:
type: object
description: Additional error details
additionalProperties: true
1 change: 1 addition & 0 deletions openapi/components/schemas/errors/Error412.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,4 @@ properties:
details:
type: object
description: Additional error details
additionalProperties: true
1 change: 1 addition & 0 deletions openapi/components/schemas/errors/Error424.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,4 @@ properties:
details:
type: object
description: Additional error details
additionalProperties: true
1 change: 1 addition & 0 deletions openapi/components/schemas/errors/Error500.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,4 @@ properties:
details:
type: object
description: Additional error details
additionalProperties: true
1 change: 1 addition & 0 deletions openapi/components/schemas/errors/Error501.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,4 @@ properties:
details:
type: object
description: Additional error details
additionalProperties: true
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
allOf:
- $ref: ../common/Error.yaml
- $ref: ../common/GridError.yaml
- type: object
properties:
reason:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
allOf:
- $ref: ../common/Error.yaml
- $ref: ../common/GridError.yaml
- type: object
properties:
requiredFields:
Expand Down