API documentation for the Helix-Pay API
Helix-Pay API (1.0.0)
Download OpenAPI description
Languages
Servers
Mock server
https://docs.helix-pay.net/_mock/apis/external.gen/
Production server
https://api.helix-pay.net/v1/
- Mock serverhttps://docs.helix-pay.net/_mock/apis/external.gen/customers
- Production serverhttps://api.helix-pay.net/v1/customers
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.helix-pay.net/_mock/apis/external.gen/customers?limit=10&offset=0' \
-H 'x-api-key: YOUR_API_KEY_HERE'Response
application/json
{ "data": [ { … } ], "metadata": { "total": 0, "limit": 0, "offset": 0 } }
- Mock serverhttps://docs.helix-pay.net/_mock/apis/external.gen/customers
- Production serverhttps://api.helix-pay.net/v1/customers
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://docs.helix-pay.net/_mock/apis/external.gen/customers \
-H 'Content-Type: application/json' \
-H 'x-api-key: YOUR_API_KEY_HERE' \
-d '{
"first_name": "string",
"last_name": "string",
"email": "string",
"address": {
"address_line_1": "123 Main St",
"address_line_2": "Apt 101",
"city": "San Francisco",
"state": "CA",
"postal_code": "94107",
"country": "US"
}
}'Response
application/json
{ "id": "cust_1ks881js771j", "first_name": "string", "last_name": "string", "email": "string", "address": { "address_line_1": "123 Main St", "address_line_2": "Apt 101", "city": "San Francisco", "state": "CA", "postal_code": "94107", "country": "US" } }
- Mock serverhttps://docs.helix-pay.net/_mock/apis/external.gen/customers/{customer_id}
- Production serverhttps://api.helix-pay.net/v1/customers/{customer_id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://docs.helix-pay.net/_mock/apis/external.gen/customers/cust_3bbb4fe7-4c25-45b2-a363-c8db8c0084b9 \
-H 'x-api-key: YOUR_API_KEY_HERE'Response
application/json
{ "id": "cust_1ks881js771j", "first_name": "string", "last_name": "string", "email": "string", "address": { "address_line_1": "123 Main St", "address_line_2": "Apt 101", "city": "San Francisco", "state": "CA", "postal_code": "94107", "country": "US" } }
- Mock serverhttps://docs.helix-pay.net/_mock/apis/external.gen/customers/{customer_id}
- Production serverhttps://api.helix-pay.net/v1/customers/{customer_id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PATCH \
https://docs.helix-pay.net/_mock/apis/external.gen/customers/cust_3bbb4fe7-4c25-45b2-a363-c8db8c0084b9 \
-H 'Content-Type: application/json' \
-H 'x-api-key: YOUR_API_KEY_HERE' \
-d '{
"first_name": "string",
"last_name": "string",
"email": "string",
"address": {
"address_line_1": "123 Main St",
"address_line_2": "Apt 101",
"city": "San Francisco",
"state": "CA",
"postal_code": "94107",
"country": "US"
}
}'Response
application/json
{ "id": "cust_1ks881js771j", "first_name": "string", "last_name": "string", "email": "string", "address": { "address_line_1": "123 Main St", "address_line_2": "Apt 101", "city": "San Francisco", "state": "CA", "postal_code": "94107", "country": "US" } }
- Mock serverhttps://docs.helix-pay.net/_mock/apis/external.gen/health
- Production serverhttps://api.helix-pay.net/v1/health
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://docs.helix-pay.net/_mock/apis/external.gen/health \
-H 'x-api-key: YOUR_API_KEY_HERE'Response
application/json
{ "message": "string" }