I have read almost everything there is on the Internet (almost no examples) and studied the (very limited and confusing) documentation. I have a client were I am integrating payone, and I am not getting any further.
So I used the API client documentation and integrated the iframe client api example with creditcardcheck on page 35 (chapter 3.1.5.5). This works fine I receive the answer and a pseudocardpan.
As explained in the quick start guide, I then start the "preauthorization", using the server api with the pseudocardpan. I send all the necessary parameters again, and I end up on the server payone with status = approved .
I assume this is then successfull. However, what or how should I proceed? What is the transactionUrl for? Maybe someone has experience with payone.
I understand that once the response comes back that it has been approved, then it is approved - all the details were correct and authorisation was successful.
If you are doing a
preauthorization
then you will need to follow that with acapture
to actually take the payment. In some legislative environments, for example many US states, you cannot capture the payment until you finally ship the goods from an online shop.If that is not a problem (e.g. paying invoices, running an online shop in the UK), then use
authorization
, which does apreauthorization
andcapture
all in one step. Apart from the name of the request, the details of the message you send is identical.