-
Notifications
You must be signed in to change notification settings - Fork 5.7k
[BillingRP] New API to list transactions by invoice #8319
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
Merged
Merged
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
609e7a1
Adding new fields to transactions API
asarkar84 e6177df
Merge remote-tracking branch 'upstream/master' into ansar/transactions
asarkar84 680ef78
Updated the field description
asarkar84 7d6b456
Merge remote-tracking branch 'upstream/master' into ansar/transactions
asarkar84 5259473
Updated few descriptions
asarkar84 d749b58
Merge remote-tracking branch 'upstream/master' into ansar/transactions
asarkar84 0b7a7f7
[BillingRP] New API to list transactions by invoice
asarkar84 0b09323
Incorporating review comments
asarkar84 aaaad00
Updated description
asarkar84 4c91f50
Updated transaction description
asarkar84 7ba4442
Updated description
asarkar84 2ab3b9d
Added unbilled to custom words
asarkar84 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -1509,6 +1509,7 @@ ukwest | |
| Ulaanbaatar | ||
| unallocated | ||
| unattend | ||
| unbilled | ||
| Unclaim | ||
| Undelete | ||
| undeleted | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
122 changes: 122 additions & 0 deletions
122
...ager/Microsoft.Billing/preview/2019-10-01-preview/examples/TransactionsListByInvoice.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,122 @@ | ||
| { | ||
| "parameters": { | ||
| "api-version": "2019-10-01-preview", | ||
| "billingAccountName": "{billingAccountName}", | ||
| "billingProfileName": "{billingProfileName}", | ||
| "invoiceName": "{invoiceName}" | ||
| }, | ||
| "responses": { | ||
| "200": { | ||
| "body": { | ||
| "value": [ | ||
| { | ||
| "id": "/providers/Microsoft.Billing/BillingAccounts/{billingAccountName}/BillingProfiles/{billingProfileName}/transactions/41000000-0000-0000-0000-000000000000", | ||
| "name": "41000000-0000-0000-0000-000000000000", | ||
| "type": "Microsoft.Billing/billingAccounts/billingProfiles/transactions", | ||
| "properties": { | ||
| "kind": "all", | ||
| "date": "2018-05-01T00:00:00Z", | ||
| "invoice": "2344233", | ||
| "productFamily": "Storage", | ||
| "productTypeId": "A12345", | ||
| "productType": "VM Instance", | ||
| "productDescription": "Standard D1, US West 3", | ||
| "transactionType": "Purchase", | ||
| "transactionAmount": { | ||
| "currency": "USD", | ||
| "value": 5000.00 | ||
| }, | ||
| "invoiceSectionId": "/providers/Microsoft.Billing/billingAccounts/{billingAccountName}/billingProfiles/{billingProfileName}/invoiceSections/22000000-0000-0000-0000-000000000000", | ||
| "invoiceSectionDisplayName": "Contoso operations invoiceSection", | ||
| "billingProfileId": "/providers/Microsoft.Billing/billingAccounts/{billingAccountName}/billingProfiles/{billingProfileName}", | ||
| "billingProfileDisplayName": "Contoso operations billing", | ||
| "azureCreditApplied": { | ||
| "currency": "USD", | ||
| "value": 2000.00 | ||
| }, | ||
| "billingCurrency": "USD", | ||
| "discount": 0.1, | ||
| "effectivePrice": { | ||
| "currency": "USD", | ||
| "value": 10.00 | ||
| }, | ||
| "exchangeRate": 1, | ||
| "marketPrice": { | ||
| "currency": "USD", | ||
| "value": 20.00 | ||
| }, | ||
| "pricingCurrency": "USD", | ||
| "quantity": 1, | ||
| "servicePeriodStartDate": "2018-05-01T00:00:00Z", | ||
| "servicePeriodEndDate": "2018-09-30T00:00:00Z", | ||
| "subTotal": { | ||
| "currency": "USD", | ||
| "value": 4500.00 | ||
| }, | ||
| "tax": { | ||
| "currency": "USD", | ||
| "value": 500.00 | ||
| }, | ||
| "unitOfMeasure": "1 Minute", | ||
| "units": 11.25, | ||
| "unitType": "1 Runtime Minute" | ||
| } | ||
| }, | ||
| { | ||
| "id": "/providers/Microsoft.Billing/BillingAccounts/{billingAccountName}/BillingProfiles/{billingProfileName}/transactions/51000000-0000-0000-0000-000000000000", | ||
| "name": "51000000-0000-0000-0000-000000000000", | ||
| "type": "Microsoft.Billing/billingAccounts/billingProfiles/transactions", | ||
| "properties": { | ||
| "kind": "all", | ||
| "date": "2018-04-01T00:00:00Z", | ||
| "invoice": "pending", | ||
| "productFamily": "Storage", | ||
| "productTypeId": "A12345", | ||
| "productType": "VM Instance", | ||
| "productDescription": "Standard Support", | ||
| "transactionType": "Cancel", | ||
| "transactionAmount": { | ||
| "currency": "USD", | ||
| "value": 50.00 | ||
| }, | ||
| "invoiceSectionId": "/providers/Microsoft.Billing/billingAccounts/{billingAccountName}/billingProfiles/{billingProfileName}/invoiceSections/22000000-0000-0000-0000-000000000000", | ||
| "invoiceSectionDisplayName": "Contoso operations invoiceSection", | ||
| "billingProfileId": "/providers/Microsoft.Billing/billingAccounts/{billingAccountName}/billingProfiles/{billingProfileName}", | ||
| "billingProfileDisplayName": "Contoso operations billing", | ||
| "azureCreditApplied": { | ||
| "currency": "USD", | ||
| "value": 20.00 | ||
| }, | ||
| "billingCurrency": "USD", | ||
| "discount": 0.1, | ||
| "effectivePrice": { | ||
| "currency": "USD", | ||
| "value": 10.00 | ||
| }, | ||
| "exchangeRate": 1, | ||
| "marketPrice": { | ||
| "currency": "USD", | ||
| "value": 20.00 | ||
| }, | ||
| "pricingCurrency": "USD", | ||
| "quantity": 1, | ||
| "servicePeriodStartDate": "2018-05-01T00:00:00Z", | ||
| "servicePeriodEndDate": "2018-09-30T00:00:00Z", | ||
| "subTotal": { | ||
| "currency": "USD", | ||
| "value": 45.00 | ||
| }, | ||
| "tax": { | ||
| "currency": "USD", | ||
| "value": 5.00 | ||
| }, | ||
| "unitOfMeasure": "1 Minute", | ||
| "units": 1.25, | ||
| "unitType": "1 Runtime Minute" | ||
| } | ||
| } | ||
| ] | ||
| } | ||
| } | ||
| } | ||
| } |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.