Stripe Tokenization App

API related to Stripe Tokenization App

A lot of our customers use Stripe to charge guests and transfer money to Properties. It is excellent solution and works well without any headache except one - how to transfer Credit Card details from OTA to Stripe account. Usually, to perform this operation your system should be PCI DSS certified, because this operation required access to Raw Credit Card data.

Channex will offer a new way how to do that and dramatically decrease complexity - Stripe Tokenization App.

Basically, this Application allow you to do just one thing - pass Credit Card data from Channex PCI Storage into your Stripe Account.

To work with this API you should have:

  • connected PMS Stripe Account (you can do that at your User Profile)

  • installed Stripe Tokenization App (see Applications API)

When Stripe is connected and Application is installed, you will have access to two API methods:

  • Create Credit Card Stripe Token

  • Create Payment Method Token

Create Credit Card Token

Request:

POST /api/v1/stripe_tokenization_app/:app_installation_id/token

{
  "booking_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6"
}

Create Payment Method Token

Request:

POST /api/v1/stripe_tokenization_app/:app_installation_id/payment_method

{
  "booking_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6"
}

How to use token?

Once token is created, you are able to use it at your side in regular basis - create a charge or anything else.

Please, keep in mind, token will be created at your account and we are not have any access to this information.

Last updated

Was this helpful?