Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Incorrect function paramter for GetTransactionHistory in API #312

Open
erikd234 opened this issue Mar 14, 2025 · 1 comment
Open

Incorrect function paramter for GetTransactionHistory in API #312

erikd234 opened this issue Mar 14, 2025 · 1 comment

Comments

@erikd234
Copy link

Title
Discrepancy in PathTransactionHistory URL vs. Apple’s Documentation caused me great confusion


Description
Currently, GOIAP uses:

PathTransactionHistory = "/inApps/v2/history/{originalTransactionId}"

However, according to Apple’s documentation ([Get Transaction History](https://developer.apple.com/documentation/appstoreserverapi/get_transaction_history)), the path parameter {transactionId} need not be the original transaction ID. It can be any valid transaction ID—including the most recent one—to retrieve the full transaction history.


Suggested Improvements

  1. Change the parameter name: Rename PathTransactionHistory to use transactionId instead of originalTransactionId, e.g.:
    PathTransactionHistory = "/inApps/v2/history/{transactionId}"
  2. Clarify usage: Update documentation and function signature (e.g., rename GetTransactionHistory(ctx context.Context, originalTransactionId string, ...)) so it is explicit that the latest transaction ID should be passed if the caller wants a full transaction history.

Additional Context

@richzw
Copy link
Collaborator

richzw commented Mar 14, 2025

@erikd234 , Thank you very for your question. The function signature has been updated in the latest version. Please let me know if something incorrect.

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

No branches or pull requests

2 participants