Tell me more ×
Answers OnStartups is a question and answer site for entrepreneurs looking to start or run a new business. It's 100% free, no registration required.

I would like to know if is possible to create a system that pay/receive automatically based on what is happening in the site. I would like to know after a payment that it has succeeded or not in order to activate the service.

I don't have a business so what is my best choice? (country: Portugal) thanks

Example of what I would like is 99design.com (not exactly how it happens):

  • Users pay to open a new contest
  • Website somehow is noticed by the success of that payment and opens the contest
  • There is a winner and the money are sent to that user and a little commission to the Website

UPDATE:

What I Really NEED:

  • Available in Portugal;
  • API to know if the payment has been done
  • Low fees, I prefer no monthly fees
  • What about if I don't have a business, but just the site
  • Business name instead of my Name when someone receive/pay
share|improve this question

1 Answer

up vote 2 down vote accepted

This is actually some what of a technical question not really a 'start up' question.

I'm not sure what countries PayPal works in, but whether you have PayPal standard or Pro you can achieve what you are looking to do.

With PayPal Standard there is a concept called IPN Instant Payment Notification. You can essentially call a web service or page back on the originating website once they finish the transaction on PayPal. Once IPN calls back to your website you would need to have custom code/logic to mark in your database that the contest has been paid for.

If you were able to upgrade to PayPal Pro in your country you can do a lot of this without the user ever having to go over to the actual PayPal website.

You would essentially pay commissions out to people by sending them money via PayPal to their email address.

There are probably content management systems or e-commerce systems that may be a good fit for you to automate some of this. It's possible that Drupal 7 and Drupal 7 commerce could achieve this without much programming. (But I'm just guessing).

Typically this stuff is custom coded for a specific need.

Regarding your update:

  • Available in Portugal ('I think' PayPal is)
  • API exists for PayPal Standard. See this link for Express Checkout, has API docs
  • PayPal charges a transaction fee under a dollar and a percentage typically 2.5 - 3.3%
  • PayPal standard has no monthly fee
  • In the US you don't have to have an actual registered business to do business. There are benefits to incorporating but you can just claim any income on your personal income taxes. Not sure if it's the same in Portugal.
share|improve this answer
Thanks! I didn't knew about paypal pro but it has a little problem. the 30$/month fee. Is there any way to have that kind of automation (API access to know if succeed or not) by paying by transaction? The problem is not about coding as is a Django app. I only want to know what I can do regards this topic. – Totty Dec 11 '11 at 1:23
1  
Pretty sure IPN is still valid with PayPal standard. It's just the user has to go to PayPal to finish the transaction but your site i s still called back via HTTP post to let you know the transaction succeeded. The new kid on the block that is awesome is www.stripe.com but wouldn't work for you since YOU are in Portugal. Site owner / bank has to be in the US. – Ryan Doom Dec 11 '11 at 1:37
it's not a problem the user to go the paypal site to finish. The main points are: available in Portugal, API to know if payed/received, not too much money, and the problem about me don't having the business. Just the website :... (check my update) – Totty Dec 11 '11 at 1:45
Gotcha, ok i revised my comments above too. – Ryan Doom Dec 11 '11 at 14:43
Thanks a lot, really good answer. But on the last point I don't think is really a problem because in the beginning will not not be a lot of people (and way less transference) and I don't think would have any legal impact (because is not noticed). Then if it works well I will open a business and do it right (:. There is any other way in order to don't show my real name when someone make a transaction, I would prefer to show the business name if possible. thanks again (: (updated with a last point) – Totty Dec 11 '11 at 15:29
show 3 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.