Static QR Codes
Get All Static QRs
Guides
API References
- Payment Request
- Recurring Billing
- Charges
- Payout
- Account
- Orders
- Products
- Product Category
- Customers
- Staffs
- Invoice
- Webhook Events
- Static QR Codes
- Notifications
- Terminal
Static QR Codes
Get All Static QRs
This endpoint allows you to get all static QR codes. The static QR codes are the QR codes that you can use to receive payments.
GET
/
v1
/
static_qr
curl --request GET \
--url https://api.sandbox.hit-pay.com/v1/static_qr \
--header 'X-BUSINESS-API-KEY: <x-business-api-key>'
{
"data": [
{
"id": "<string>",
"name": "<string>",
"reference": "<string>",
"payment_provider": "<string>",
"payment_provider_method": "<string>",
"payment_provider_method_logos": [
{
"sm": "<string>",
"md": "<string>",
"lg": "<string>",
"svg": "<string>",
"svg_square": "<string>",
"png_square": "<string>",
"method": "<string>",
"iconName": "<string>",
"displayName": "<string>"
}
],
"payment_provider_method_main_logo": {
"sm": "<string>",
"md": "<string>",
"lg": "<string>",
"svg": "<string>",
"svg_square": "<string>",
"png_square": "<string>",
"method": "<string>",
"iconName": "<string>",
"displayName": "<string>"
},
"created_by": {
"id": "<string>",
"display_name": "<string>",
"first_name": "<string>",
"last_name": "<string>"
},
"location_id": "<string>",
"location": {
"name": "<string>",
"address": "<string>"
},
"device_id": "<string>",
"device": {
"label": "<string>"
},
"qr_value": "<string>",
"created_at": "<string>",
"updated_at": "<string>"
}
],
"links": {
"first": "<any>",
"last": "<any>",
"prev": "<any>",
"next": "<any>"
},
"meta": {
"path": "<string>",
"per_page": 123,
"next_cursor": "<any>",
"prev_cursor": "<any>"
}
}
Headers
Example:
"b286daabf9921b5a01a4621f026c111e046f8911feba212996c92159b98427d"
Response
200 - application/json
200
Was this page helpful?
curl --request GET \
--url https://api.sandbox.hit-pay.com/v1/static_qr \
--header 'X-BUSINESS-API-KEY: <x-business-api-key>'
{
"data": [
{
"id": "<string>",
"name": "<string>",
"reference": "<string>",
"payment_provider": "<string>",
"payment_provider_method": "<string>",
"payment_provider_method_logos": [
{
"sm": "<string>",
"md": "<string>",
"lg": "<string>",
"svg": "<string>",
"svg_square": "<string>",
"png_square": "<string>",
"method": "<string>",
"iconName": "<string>",
"displayName": "<string>"
}
],
"payment_provider_method_main_logo": {
"sm": "<string>",
"md": "<string>",
"lg": "<string>",
"svg": "<string>",
"svg_square": "<string>",
"png_square": "<string>",
"method": "<string>",
"iconName": "<string>",
"displayName": "<string>"
},
"created_by": {
"id": "<string>",
"display_name": "<string>",
"first_name": "<string>",
"last_name": "<string>"
},
"location_id": "<string>",
"location": {
"name": "<string>",
"address": "<string>"
},
"device_id": "<string>",
"device": {
"label": "<string>"
},
"qr_value": "<string>",
"created_at": "<string>",
"updated_at": "<string>"
}
],
"links": {
"first": "<any>",
"last": "<any>",
"prev": "<any>",
"next": "<any>"
},
"meta": {
"path": "<string>",
"per_page": 123,
"next_cursor": "<any>",
"prev_cursor": "<any>"
}
}