Add UDID's to developer account after reaches 100 count - app-store-connect

Recently I renewal my developer account. But unfortunately i didn't delete UDID's from the list. Now it reaches 100. I have 9 months time to again renewal my account. SO how can i add new UDID's ? Is there any chance again to renewal my account for adding/ Managing devices.Please provide me suggestion.

As far as I know there is no way to remove old UDIDs before next license renewal.
So I suggest you to buy second developer license and use it for you needs.

Related

How to set trial period in shopify app?

I have created shopify app and setting up billing Api. In the App, I want to apply trial period of 20 days. I have created the charge during the app installation and send customers to confirmation url so that they can accept or decline the charge.. So I want to know that if customer decline the payment charge, then can he uses the app featurs till trial period?
If a customer declines the subscription, you still get the confirmation URL callback. Examine the charge. The status will say declined. At this point you can kill off their DB token and destroy their session. This will ensure they cannot use your App as they declined the terms.
It is one bad aspect of the whole billing scenario. I have lots of customers that are faced with a question they don't read. So they assume the trial you offer for free is activated by declining the subscription. Silly customers... still cannot operate the Internet :)

Changes to the apple developer account

Whether the $99 personal accounts can be changed in a $99 enterprise account?
If you can change, please tell me what should to do?
Thank you very much!
Apple Enterprise account is not charged at $99, however it costs $299 and you can register for Enterprise account from here:
https://developer.apple.com/programs/enterprise/enroll/
You need a DUNS number to apply.
However if you just want your company name to be displayed in Developer name, instead of individual name, you need to contact Apple support from here:
https://developer.apple.com/contact/
You need to contact Apple.
From https://developer.apple.com/support/account/
Can I switch my membership from an individual to an organization?
Yes, if you are the founder/co-founder of the organization. To start the conversion process, please contact us. You may be asked to submit business documents to verify your company's identity.

variable monthly charges to users

I have a situation where I am to bill the site users monthly. But the invoice amount that is raised depends on the the leads that our site generates for his business. For example if the user gets 5 leads from my site and I charge him $10 per lead, at the end of month he will be charged $50. similarly leads might vary each month so will the amount.
Now I cant store his cc/ paypal credentials on my site for security reasons nor can I pre bill him or ask him to take credits and then use it. Please let me know the way to handle this situation. How can I handle this using paypal?
There are a few different ways to handle this, but I would recommend Preapproved Payments, which are part of the Adaptive Payments API.
With this method your users would create a profile with you (using the Preapproval API) when they first create their account on your site. That will give you a preapproval key that you can store with your user account. Then in the future when you need to bill them you can use the Pay API with the preapproval key to process funds immediately without further approval.
If you're working with PHP my class library for PayPal will make these calls very simple for you. You would just use the Preapproval.php template to setup the profiles for people, and then use PayWithOptions.php to process payments using the preapproval key(s) accordingly.
If you end up using it and need more help you can contact me directly for support.

Is there a way to confirm a user's employer during an online log-in?

Does anyone know of any solution for checking that a user is still employed by the company who pays for their access to my web app? The problem I'm trying to address is that my client's admin users aren't great at killing the accounts of users who no longer work for that company.
It would be ideal if there were some generic way of asking a company's HR system "Does employee 0001 still work for you?"
Currently working with a very small user base, so acquiring more info on users (e.g. employee reference number etc.) is relatively easy.
Thanks.
No, there is no way to reliably check for this. However, that's not the problem, your approach is. Give the company an incentive to validate the accounts. Either charge a fixed fee on top of any usage charges so that dormant accounts cost them money, or make the accounts go dormant after a short period of time such as a month so that the client is forced to revalidate periodically.

subscription payment processing

Looking for some advice on which service to use to implement the following on my site:
I would like to sell 4 levels of subscriptions each to be billed on a monthly basis
The customer should be able to cancel their subscription at any time
The customer should be able to upgrade and downgrade their subscription at any time
I would like to keep the cost down until I have enough subscribers.
I have looked at Paypal but could not figure out how I can do requirements #3. Posting to their community forums yielded no response.
I am also located in Canada which seems to limit the options available to me.
I am currently looking at www.preedly.com and www.chargify.com but they seem to require a merchant account so I'd end up paying 2 service providers.
My site is written in PHP so a PHP-friendly solution is needed.
One last thing, I could not find a way to get Paypal to tell me the new subscription expiry date (following the successful processing of a transation) in order for me to update my customer table and lock out those who have not paid.
You may want to look into gettings a US based merchant account (I used to work for a merchant account provider and we were able to successfully establish merchant account for Canadian businesses. IIRC it required some hoops to be jumped through, though). If you can get a US merchant account you then can use Authorize.Net's Automated Recurring Billg (ARB) API. It allows you to create subscriptions and modify them accordingly (upadting and deleting).