For the complete documentation index, see llms.txt. This page is also available as Markdown.

Add Product to a Bundle

URL : /api/v1/products/{id}/add_to_bundle/

Method : POST

Parameters

  • product_id - Integer

    • id of the Product to add to the bundle

    • must belong to the same company, have is_bundle set to false and match the bundle's authorization_method

Data example

{
    "product_id": 1584723961091260
}

Success Response

Code : 200 OK

Content examples :

[
    {
        "id": 1584723961091260,
        "short_code": "bugs",
        "product_name": "bugs"
    }
    ...
]

Last updated

Was this helpful?