Payment options
Payment gateway list
GET
https://app.hightouch.ai/api/integrations/payment_gates/
Query Parameters
Name | Type | Description |
---|---|---|
shop_id | integer | Store ID |
limit | integer | Number of entries( max. 100) |
offset | integer | Shift on records |
Add a payment gateway
POST
https://app.hightouch.ai/api/integrations/payment_gates/
The following types of payment systems are supported at the moment:
{"id": 1}
- Yandex Kassa
{"id": 2}
- Robokassa
Each payment system requires the entry of its own additional fields.
Request Body
Name | Type | Description |
---|---|---|
shop_id | integer | Store ID |
name | string | Name of the payment gateway |
type | object | Type. For example : |
yandex_kassa_secret_key | string | |
yandex_kassa_shop_id | string | |
robokassa_shop_id | string | |
robokassa_pass1 | string | |
robokassa_pass2 | string | |
string |
Change payment gateway
PATCH
https://app.hightouch.ai/api/integrations/payment_gates/:id/
Path Parameters
Name | Type | Description |
---|---|---|
id | integer | Payment gateway ID |
Request Body
Name | Type | Description |
---|---|---|
shop_id | integer | Store ID |
name | string | Name of the payment gateway |
type | object | Type. for example: |
yandex_kassa_secret_key | string | |
yandex_kassa_shop_id | string | |
robokassa_shop_id | string | |
robokassa_pass1 | string | |
robokassa_pass2 | string |
Delete payment gateway
DELETE
https://app.hightouch.ai/api/integrations/payment_gates/:id/
Path Parameters
Name | Type | Description |
---|---|---|
id | integer | Payment gateway ID |
Last updated