Are there any APIs to fetch the subscription details and billing history along with their costs and limits in Atlassian? - jira-rest-api

The API must fetch the subscription details information such as the current user's plan, renewal type (Monthly/Annual), Renewal date, Billing card details, Billing emails etc.
The API must fetch the history of items by month/range along with their pdfs.

Related

Is there a REST API to get the billing history in in Onelogin?

I've looked into the Onelogin documentation and couldn't find the APIs to get the billing history.
I need the details such as the billing details, invoice and payment details. Please provide the details if available.
I must be able to view the billing history, and the payment methods, like card details and billing email id etc.

How to reconcile financial information for in-app purchases to transactions?

We have an iOS app that supports in-app purchase. When someone makes an in-app purchase we create a Sales Order and Invoice in our ERP system (Netsuite) at the relevant store list price. We record the Apple transaction ID on these ERP records. When we receive a deposit from Apple for purchases, we need to be able to create a Payment record and apply the funds to the Invoice. I.e. we need to split the Apple bank deposit into payments for each transaction.
The way we do this reconciliation for Stripe and ACH/Check payments is to match transaction level payment information to Sales Orders. This allows our finance team to properly handle accounting for fees etc. and for them to have confidence we have received payment for all orders.
However, for in-app purchase we can find no way of downloading a report with transaction level information from App Store Connect. There are only summaries available at the country level. Based on other answers (1,2) it seems that it is simply not possible to get a transaction level report available from Apple. With this limitation how can we reconcile the funds received from Apple against our transactions?

Notification after subscription through authorize.net

I am a developer and set up authorize.net for subscription. Suppose I subscribed for 12 months from January. I can get transaction id and payment status and other necessary information on January or after first payment. But how can I get the transaction id and payment status and other necessary information on 2nd, 3rd, 4th payment and so on.
If you want to be notified of payments and retrieve all of the relevant information about them in an automated fashion use their Silent Post functionality. It is like Paypal's IPN as it will post transaction information to your website so you can record it in your database in real time.
You will get this information inside Authorize.Net Merchant Interface : https://account.authorize.net
Under the
Recurring Billing
option, inside the
Transaction Status Report
page you will find the
Monthly Transaction Status Dashboard
which contains the Subscriptions transaction details
There is also an ARB Email Notifications options to get this transactions in email, under the Recurring Billing option

Shopify API - Payments

I have been reviewing the API documentation for Shopify and am trying to figure out if the cost of an item selected from the 'Store' can be passed in a Get command back to a different website so a different website can charge for the Item along with other charges from a website ...and then once the payment goes through on the website, send a POST to shopify that the sale was complete and proceed with fulfilling the order?
Our software is newspaper software so we provide newspapers with subscriber web portals were customers can sign up and pay for a newspaper subscription.
We would like to offer the ability to add Single Sales items to what a customer purchases and we want to be able to do it in one payment transaction
I have reviewed the various Shopify API documentation but it is not clear if the API supports getting cost info and posting a successful charge back to Shopify to complete the fulfillment step. We are looking to be able to GET the cost for a selected single sale item passed to us from the Shopify API so that we can add it to the Amount we pass to the Payment Gateway we integrate with and when the payment goes through, send Shopify a success on the payment.
The ultimate goal is to have a customer make one payment that can include single sales items as well as a newspaper subscription or day pass.
You should do a POST and create an Order using the Shopify API once (at your side) are sure the payment has gone through.

Authorize net ARB increase subscription amount

I am using authorize net ARB subscription api in my application to charge some monthly amount from my users based on the product they select. If a user decides to upgrade his product, the subscription amount will also increase. I want to implement this without having to ask the user for his credit card details again. Can I increase the amount of the ARB subscription? If yes, is there any limit on the increased amount ?(I know that in PayPal, you can increase the subscription amount with an upper limit of 25%)
If you do not have the user's card information you cannot change the amount in ARB. If not asking the user for their card information again is important to you then you should use the CIM API which allows you to store credit card information through Authorize.Net and then make payments using that stored information. The only catch is you would need to build your own recurring billing engine as CIM does not handle that.