Files
dub-node/docs/sdks/qrcodes/README.md
2024-04-19 11:28:50 +05:30

4.1 KiB
Raw Blame History

QRCodes

(qrCodes)

Available Operations

  • get - Retrieve a QR code

get

Retrieve a QR code for a link.

Example Usage

import { Dub } from "dub";

const dub = new Dub({
  token: "DUB_API_KEY",
  workspaceId: "<value>",
});

async function run() {
  const result = await dub.qrCodes.get({});

  // Handle the result
  console.log(result)
}

run();

Parameters

Parameter Type Required Description
request operations.GetQRCodeRequest ✔️ The request object to use for the request.
options RequestOptions Used to set various options for making HTTP requests.
options.fetchOptions RequestInit Options that are passed to the underlying HTTP request. This can be used to inject extra headers for examples. All Request options, except method and body, are allowed.

Response

Promise<operations.GetQRCodeResponse>

Errors

Error Object Status Code Content Type
errors.SDKError 4xx-5xx /