Skip to main content

Finn API (1.0.0)

Download OpenAPI specification:Download

Finn API

QR Code

Endpoint to manage QR Codes

Get a QR Code

path Parameters
id
required
string

QR Code identifier

Responses

Response samples

Content type
application/json
{
  • "status": "string",
  • "qrCode": {
    }
}

Get a list of QR Codes

Responses

Response samples

Content type
application/json
{
  • "pageInfo": {
    },
  • "qrCodes": {
    }
}

Create a new QR Code

Endpoint to create a new QR Code

Request Body schema: application/json

Data to create a new QR Code

name
required
string

Your QR Code name

value
required
number

Value of QR Code in cents. If zero it will accept any value in the moment of capturing a new payment. If set some value, for example 10, it will accept only 0,10 as payment.

Responses

Request samples

Content type
application/json
{
  • "name": "QR Code 1",
  • "value": 0
}

Response samples

Content type
application/json
{
  • "charge": {
    }
}