Skip to content

fix: correcting resource id names#208

Open
pengying wants to merge 1 commit into02-18-feat_fixing_transaction_schemafrom
02-18-fix_correcting_resource_id_names
Open

fix: correcting resource id names#208
pengying wants to merge 1 commit into02-18-feat_fixing_transaction_schemafrom
02-18-fix_correcting_resource_id_names

Conversation

@pengying
Copy link
Contributor

@pengying pengying commented Feb 19, 2026

TL;DR

Standardized ID field names across API schemas by renaming specific identifier fields to simply id.

What changed?

Renamed identifier fields in three schema components to follow a consistent naming pattern:

  • Changed quoteId to id in the Quote schema
  • Changed jobId to id in the BulkCustomerImportJob schema
  • Changed webhookId to id in the BaseWebhook schema

These changes were applied to both the combined OpenAPI file and the individual component files.

How to test?

  1. Verify that the API documentation renders correctly with the updated field names
  2. Ensure that any client code using these schemas is updated to reference the new field names
  3. Confirm that API responses match the updated schema definitions

Why make this change?

This change standardizes our API response format by using consistent field naming conventions across all resources. Having a uniform id field instead of resource-specific identifiers (quoteId, jobId, webhookId) makes the API more intuitive and easier to work with for developers.

@pengying pengying marked this pull request as ready for review February 19, 2026 02:03
Copy link
Contributor Author

Warning

This pull request is not mergeable via GitHub because a downstack PR is open. Once all requirements are satisfied, merge this PR as a stack on Graphite.
Learn more

This stack of pull requests is managed by Graphite. Learn more about stacking.

@github-actions
Copy link

github-actions bot commented Feb 19, 2026

✱ Stainless preview builds

This PR will update the grid SDKs with the following commit messages.

kotlin

fix(api): rename jobId/quoteId/webhookId to id in quotes/webhooks/bulk

openapi

fix(types): rename quoteId/jobId/webhookId to id in Quote/BulkCustomerImportJob/Webhook

python

fix(types): rename quote_id/webhook_id/job_id to id across models

typescript

fix(api): rename ID fields to id in quotes, bulk status, and webhook events

Edit this comment to update them. They will appear in their respective SDK's changelogs.

grid-openapi studio · code · diff

Your SDK built successfully.
generate ✅

grid-typescript studio · code · diff

Your SDK built successfully.
generate ✅build ✅lint ✅test ✅

npm install https://pkg.stainless.com/s/grid-typescript/0fd82d4c4836067e518da96b925afd1dc5850b43/dist.tar.gz
grid-python studio · code · diff

Your SDK built successfully.
generate ✅build ✅lint ✅test ✅

pip install https://pkg.stainless.com/s/grid-python/3668907b09d58ea11d014f9a87baf481620553e1/grid-0.0.1-py3-none-any.whl
grid-kotlin studio · code · diff

Your SDK built successfully.
generate ✅build ✅lint ✅test ✅


This comment is auto-generated by GitHub Actions and is automatically kept up to date as you push.
If you push custom code to the preview branch, re-run this workflow to update the comment.
Last updated: 2026-02-19 22:02:45 UTC

@greptile-apps
Copy link
Contributor

greptile-apps bot commented Feb 19, 2026

Greptile Summary

Renamed identifier fields to standardize on id across Quote, BulkCustomerImportJob, and BaseWebhook schemas. The schema definitions in both openapi.yaml and mintlify/openapi.yaml were updated correctly, but the webhook example YAML files still reference the old field names.

Major issues found:

  • 14 webhook example files contain outdated field names (webhookId, jobId, quoteId) that don't match the updated schemas
  • This creates a mismatch between the schema definitions and the example documentation

Confidence Score: 2/5

  • Not safe to merge - schema and examples are misaligned
  • The schema changes are correct, but 14 example instances across 7 webhook files still use old field names, creating inconsistency between schemas and documentation
  • All webhook example files in openapi/webhooks/ directory need field name updates to match the new schemas

Important Files Changed

Filename Overview
openapi/components/schemas/quotes/Quote.yaml Renamed quoteId to id in schema definition and required fields
openapi/components/schemas/customers/BulkCustomerImportJob.yaml Renamed jobId to id in schema definition and required fields
openapi/components/schemas/webhooks/BaseWebhook.yaml Renamed webhookId to id in schema definition and required fields
openapi.yaml Applied all three ID field renamings in combined OpenAPI spec
mintlify/openapi.yaml Applied all three ID field renamings in Mintlify OpenAPI spec

Flowchart

%%{init: {'theme': 'neutral'}}%%
flowchart TD
    A[Schema Components] --> B[Quote.yaml]
    A --> C[BulkCustomerImportJob.yaml]
    A --> D[BaseWebhook.yaml]
    
    B --> E[quoteId → id]
    C --> F[jobId → id]
    D --> G[webhookId → id]
    
    E --> H[openapi.yaml]
    F --> H
    G --> H
    
    E --> I[mintlify/openapi.yaml]
    F --> I
    G --> I
    
    H -.-> J[Webhook Examples]
    I -.-> J
    
    J --> K[bulk-upload.yaml]
    J --> L[outgoing-payment.yaml]
    J --> M[incoming-payment.yaml]
    J --> N[Other webhook files]
    
    K -.NOT UPDATED.-> O[Still uses jobId, webhookId]
    L -.NOT UPDATED.-> P[Still uses quoteId, webhookId]
    M -.NOT UPDATED.-> Q[Still uses webhookId]
    N -.NOT UPDATED.-> R[Still uses webhookId]
    
    style O fill:#f88
    style P fill:#f88
    style Q fill:#f88
    style R fill:#f88
Loading

Last reviewed commit: 2d628a2

Copy link
Contributor

@greptile-apps greptile-apps bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

5 files reviewed, 10 comments

Edit Code Review Agent Settings | Greptile

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

needs to be id not webhookId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/outgoing-payment.yaml
Line: 86

Comment:
needs to be `id` not `webhookId`

How can I resolve this? If you propose a fix, please make it concise.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

needs to be id not webhookId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/outgoing-payment.yaml
Line: 121

Comment:
needs to be `id` not `webhookId`

How can I resolve this? If you propose a fix, please make it concise.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

needs to be id not webhookId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/test-webhook.yaml
Line: 49

Comment:
needs to be `id` not `webhookId`

How can I resolve this? If you propose a fix, please make it concise.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

needs to be id not webhookId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/kyc-status.yaml
Line: 63

Comment:
needs to be `id` not `webhookId`

How can I resolve this? If you propose a fix, please make it concise.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

needs to be id not webhookId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/invitation-claimed.yaml
Line: 72

Comment:
needs to be `id` not `webhookId`

How can I resolve this? If you propose a fix, please make it concise.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

needs to be id not webhookId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/incoming-payment.yaml
Line: 100

Comment:
needs to be `id` not `webhookId`

How can I resolve this? If you propose a fix, please make it concise.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

needs to be id not webhookId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/incoming-payment.yaml
Line: 126

Comment:
needs to be `id` not `webhookId`

How can I resolve this? If you propose a fix, please make it concise.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

needs to be id not webhookId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/bulk-upload.yaml
Line: 55

Comment:
needs to be `id` not `webhookId`

How can I resolve this? If you propose a fix, please make it concise.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

needs to be id not webhookId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/bulk-upload.yaml
Line: 77

Comment:
needs to be `id` not `webhookId`

How can I resolve this? If you propose a fix, please make it concise.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

needs to be id not webhookId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/account-status.yaml
Line: 69

Comment:
needs to be `id` not `webhookId`

How can I resolve this? If you propose a fix, please make it concise.

@pengying pengying force-pushed the 02-18-feat_fixing_transaction_schema branch from 36ee105 to c774ff0 Compare February 19, 2026 15:17
@pengying pengying force-pushed the 02-18-fix_correcting_resource_id_names branch from b804868 to 2cc78d7 Compare February 19, 2026 15:17
Copy link

@restamp-bot restamp-bot bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

2cc78d7 is a pure rebase onto c774ff0. Approving based on @shreyav's previous approval of b804868.

Copy link

@restamp-bot restamp-bot bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

2cc78d7 is a pure rebase onto c774ff0. Approving based on @shreyav's previous approval of b804868.

Copy link
Contributor

@greptile-apps greptile-apps bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

5 files reviewed, 14 comments

Edit Code Review Agent Settings | Greptile

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

needs to be id not quoteId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/outgoing-payment.yaml
Line: 72

Comment:
needs to be `id` not `quoteId`

How can I resolve this? If you propose a fix, please make it concise.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

needs to be id not webhookId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/outgoing-payment.yaml
Line: 86

Comment:
needs to be `id` not `webhookId`

How can I resolve this? If you propose a fix, please make it concise.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

needs to be id not quoteId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/outgoing-payment.yaml
Line: 107

Comment:
needs to be `id` not `quoteId`

How can I resolve this? If you propose a fix, please make it concise.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

needs to be id not webhookId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/outgoing-payment.yaml
Line: 121

Comment:
needs to be `id` not `webhookId`

How can I resolve this? If you propose a fix, please make it concise.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

needs to be id not jobId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/bulk-upload.yaml
Line: 47

Comment:
needs to be `id` not `jobId`

How can I resolve this? If you propose a fix, please make it concise.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

needs to be id not webhookId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/incoming-payment.yaml
Line: 126

Comment:
needs to be `id` not `webhookId`

How can I resolve this? If you propose a fix, please make it concise.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

needs to be id not webhookId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/account-status.yaml
Line: 69

Comment:
needs to be `id` not `webhookId`

How can I resolve this? If you propose a fix, please make it concise.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

needs to be id not webhookId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/test-webhook.yaml
Line: 49

Comment:
needs to be `id` not `webhookId`

How can I resolve this? If you propose a fix, please make it concise.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

needs to be id not webhookId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/kyc-status.yaml
Line: 63

Comment:
needs to be `id` not `webhookId`

How can I resolve this? If you propose a fix, please make it concise.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

needs to be id not webhookId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/invitation-claimed.yaml
Line: 72

Comment:
needs to be `id` not `webhookId`

How can I resolve this? If you propose a fix, please make it concise.

@pengying pengying force-pushed the 02-18-feat_fixing_transaction_schema branch from c774ff0 to eb98c72 Compare February 19, 2026 21:46
@pengying pengying force-pushed the 02-18-fix_correcting_resource_id_names branch from 2cc78d7 to dd4ab48 Compare February 19, 2026 21:46
Copy link

@restamp-bot restamp-bot bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

dd4ab48 is a pure rebase onto eb98c72. Approving based on @shreyav's previous approval of b804868.

Copy link

@restamp-bot restamp-bot bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

dd4ab48 is a pure rebase onto eb98c72. Approving based on @shreyav's previous approval of b804868.

Copy link
Contributor

@greptile-apps greptile-apps bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

5 files reviewed, 21 comments

Edit Code Review Agent Settings | Greptile

@greptile-apps
Copy link
Contributor

greptile-apps bot commented Feb 19, 2026

Additional Comments (21)

openapi/webhooks/outgoing-payment.yaml
Update error description to reference id instead of webhookId

      description: Conflict - Webhook has already been processed (duplicate id)
Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/outgoing-payment.yaml
Line: 139

Comment:
Update error description to reference `id` instead of `webhookId`

```suggestion
      description: Conflict - Webhook has already been processed (duplicate id)
```

How can I resolve this? If you propose a fix, please make it concise.

openapi/webhooks/bulk-upload.yaml
Update error description to reference id instead of webhookId

      description: Conflict - Webhook has already been processed (duplicate id)
Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/bulk-upload.yaml
Line: 96

Comment:
Update error description to reference `id` instead of `webhookId`

```suggestion
      description: Conflict - Webhook has already been processed (duplicate id)
```

How can I resolve this? If you propose a fix, please make it concise.

openapi/webhooks/incoming-payment.yaml
Update error description to reference id instead of webhookId

      description: Conflict - Webhook has already been processed (duplicate id)
Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/incoming-payment.yaml
Line: 177

Comment:
Update error description to reference `id` instead of `webhookId`

```suggestion
      description: Conflict - Webhook has already been processed (duplicate id)
```

How can I resolve this? If you propose a fix, please make it concise.

openapi/webhooks/account-status.yaml
Update error description to reference id instead of webhookId

      description: Conflict - Webhook has already been processed (duplicate id)
Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/account-status.yaml
Line: 88

Comment:
Update error description to reference `id` instead of `webhookId`

```suggestion
      description: Conflict - Webhook has already been processed (duplicate id)
```

How can I resolve this? If you propose a fix, please make it concise.

openapi/webhooks/test-webhook.yaml
Update error description to reference id instead of webhookId

      description: Conflict - Webhook has already been processed (duplicate id)
Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/test-webhook.yaml
Line: 69

Comment:
Update error description to reference `id` instead of `webhookId`

```suggestion
      description: Conflict - Webhook has already been processed (duplicate id)
```

How can I resolve this? If you propose a fix, please make it concise.

openapi/webhooks/kyc-status.yaml
Update error description to reference id instead of webhookId

      description: Conflict - Webhook has already been processed (duplicate id)
Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/kyc-status.yaml
Line: 81

Comment:
Update error description to reference `id` instead of `webhookId`

```suggestion
      description: Conflict - Webhook has already been processed (duplicate id)
```

How can I resolve this? If you propose a fix, please make it concise.

openapi/webhooks/invitation-claimed.yaml
Update error description to reference id instead of webhookId

      description: Conflict - Webhook has already been processed (duplicate id)
Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/invitation-claimed.yaml
Line: 90

Comment:
Update error description to reference `id` instead of `webhookId`

```suggestion
      description: Conflict - Webhook has already been processed (duplicate id)
```

How can I resolve this? If you propose a fix, please make it concise.

openapi/webhooks/outgoing-payment.yaml
Should be id not quoteId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/outgoing-payment.yaml
Line: 72

Comment:
Should be `id` not `quoteId`

How can I resolve this? If you propose a fix, please make it concise.

openapi/webhooks/outgoing-payment.yaml
Should be id not webhookId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/outgoing-payment.yaml
Line: 86

Comment:
Should be `id` not `webhookId`

How can I resolve this? If you propose a fix, please make it concise.

openapi/webhooks/outgoing-payment.yaml
Should be id not quoteId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/outgoing-payment.yaml
Line: 107

Comment:
Should be `id` not `quoteId`

How can I resolve this? If you propose a fix, please make it concise.

openapi/webhooks/outgoing-payment.yaml
Should be id not webhookId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/outgoing-payment.yaml
Line: 121

Comment:
Should be `id` not `webhookId`

How can I resolve this? If you propose a fix, please make it concise.

openapi/webhooks/bulk-upload.yaml
Should be id not jobId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/bulk-upload.yaml
Line: 47

Comment:
Should be `id` not `jobId`

How can I resolve this? If you propose a fix, please make it concise.

openapi/webhooks/bulk-upload.yaml
Should be id not webhookId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/bulk-upload.yaml
Line: 55

Comment:
Should be `id` not `webhookId`

How can I resolve this? If you propose a fix, please make it concise.

openapi/webhooks/bulk-upload.yaml
Should be id not jobId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/bulk-upload.yaml
Line: 62

Comment:
Should be `id` not `jobId`

How can I resolve this? If you propose a fix, please make it concise.

openapi/webhooks/bulk-upload.yaml
Should be id not webhookId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/bulk-upload.yaml
Line: 77

Comment:
Should be `id` not `webhookId`

How can I resolve this? If you propose a fix, please make it concise.

openapi/webhooks/incoming-payment.yaml
Should be id not webhookId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/incoming-payment.yaml
Line: 100

Comment:
Should be `id` not `webhookId`

How can I resolve this? If you propose a fix, please make it concise.

openapi/webhooks/incoming-payment.yaml
Should be id not webhookId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/incoming-payment.yaml
Line: 126

Comment:
Should be `id` not `webhookId`

How can I resolve this? If you propose a fix, please make it concise.

openapi/webhooks/account-status.yaml
Should be id not webhookId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/account-status.yaml
Line: 69

Comment:
Should be `id` not `webhookId`

How can I resolve this? If you propose a fix, please make it concise.

openapi/webhooks/test-webhook.yaml
Should be id not webhookId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/test-webhook.yaml
Line: 49

Comment:
Should be `id` not `webhookId`

How can I resolve this? If you propose a fix, please make it concise.

openapi/webhooks/kyc-status.yaml
Should be id not webhookId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/kyc-status.yaml
Line: 63

Comment:
Should be `id` not `webhookId`

How can I resolve this? If you propose a fix, please make it concise.

openapi/webhooks/invitation-claimed.yaml
Should be id not webhookId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/invitation-claimed.yaml
Line: 72

Comment:
Should be `id` not `webhookId`

How can I resolve this? If you propose a fix, please make it concise.

@pengying pengying force-pushed the 02-18-feat_fixing_transaction_schema branch from eb98c72 to 8ad3ce8 Compare February 19, 2026 21:55
@pengying pengying force-pushed the 02-18-fix_correcting_resource_id_names branch from dd4ab48 to 2d628a2 Compare February 19, 2026 21:55
Copy link

@restamp-bot restamp-bot bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

2d628a2 is a pure rebase onto 8ad3ce8. Approving based on @shreyav's previous approval of b804868.

Copy link

@restamp-bot restamp-bot bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

2d628a2 is a pure rebase onto 8ad3ce8. Approving based on @shreyav's previous approval of b804868.

Copy link
Contributor

@greptile-apps greptile-apps bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

5 files reviewed, 14 comments

Edit Code Review Agent Settings | Greptile

@greptile-apps
Copy link
Contributor

greptile-apps bot commented Feb 19, 2026

Additional Comments (14)

openapi/webhooks/bulk-upload.yaml
needs to be id not jobId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/bulk-upload.yaml
Line: 47

Comment:
needs to be `id` not `jobId`

How can I resolve this? If you propose a fix, please make it concise.

openapi/webhooks/bulk-upload.yaml
needs to be id not jobId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/bulk-upload.yaml
Line: 62

Comment:
needs to be `id` not `jobId`

How can I resolve this? If you propose a fix, please make it concise.

openapi/webhooks/bulk-upload.yaml
needs to be id not webhookId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/bulk-upload.yaml
Line: 55

Comment:
needs to be `id` not `webhookId`

How can I resolve this? If you propose a fix, please make it concise.

openapi/webhooks/bulk-upload.yaml
needs to be id not webhookId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/bulk-upload.yaml
Line: 77

Comment:
needs to be `id` not `webhookId`

How can I resolve this? If you propose a fix, please make it concise.

openapi/webhooks/outgoing-payment.yaml
needs to be id not quoteId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/outgoing-payment.yaml
Line: 72

Comment:
needs to be `id` not `quoteId`

How can I resolve this? If you propose a fix, please make it concise.

openapi/webhooks/outgoing-payment.yaml
needs to be id not quoteId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/outgoing-payment.yaml
Line: 107

Comment:
needs to be `id` not `quoteId`

How can I resolve this? If you propose a fix, please make it concise.

openapi/webhooks/outgoing-payment.yaml
needs to be id not webhookId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/outgoing-payment.yaml
Line: 86

Comment:
needs to be `id` not `webhookId`

How can I resolve this? If you propose a fix, please make it concise.

openapi/webhooks/outgoing-payment.yaml
needs to be id not webhookId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/outgoing-payment.yaml
Line: 121

Comment:
needs to be `id` not `webhookId`

How can I resolve this? If you propose a fix, please make it concise.

openapi/webhooks/incoming-payment.yaml
needs to be id not webhookId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/incoming-payment.yaml
Line: 100

Comment:
needs to be `id` not `webhookId`

How can I resolve this? If you propose a fix, please make it concise.

openapi/webhooks/incoming-payment.yaml
needs to be id not webhookId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/incoming-payment.yaml
Line: 126

Comment:
needs to be `id` not `webhookId`

How can I resolve this? If you propose a fix, please make it concise.

openapi/webhooks/account-status.yaml
needs to be id not webhookId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/account-status.yaml
Line: 69

Comment:
needs to be `id` not `webhookId`

How can I resolve this? If you propose a fix, please make it concise.

openapi/webhooks/test-webhook.yaml
needs to be id not webhookId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/test-webhook.yaml
Line: 49

Comment:
needs to be `id` not `webhookId`

How can I resolve this? If you propose a fix, please make it concise.

openapi/webhooks/kyc-status.yaml
needs to be id not webhookId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/kyc-status.yaml
Line: 63

Comment:
needs to be `id` not `webhookId`

How can I resolve this? If you propose a fix, please make it concise.

openapi/webhooks/invitation-claimed.yaml
needs to be id not webhookId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/invitation-claimed.yaml
Line: 72

Comment:
needs to be `id` not `webhookId`

How can I resolve this? If you propose a fix, please make it concise.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants

Comments