الانتقال إلى المحتوى الرئيسي
POST
/
products
/
{id}
/
short_links
JavaScript
import DodoPayments from 'dodopayments';

const client = new DodoPayments({
  bearerToken: process.env['DODO_PAYMENTS_API_KEY'], // This is the default and can be omitted
});

const shortLink = await client.products.shortLinks.create('id', { slug: 'slug' });

console.log(shortLink.full_url);
{
  "full_url": "<string>",
  "short_url": "<string>"
}

التفويضات

Authorization
string
header
مطلوب

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

معلمات المسار

id
string
مطلوب

Product Id

الجسم

application/json
slug
string
مطلوب

Slug for the short link.

static_checkout_params
object

Static Checkout URL parameters to apply to the resulting short URL.

الاستجابة

Short URL

full_url
string
مطلوب

Full URL.

short_url
string
مطلوب

Short URL.