Skip to main content

Documentation

Delete Product

Delete a product or service from the Rapyd platform.

This action also deletes all associated plans.

Note

You cannot delete a product that is associated with an active subscription. To find subscriptions associated with a product, see List Subscriptions.

This method triggers the Product Deleted webhook. This webhook contains the same information as the response.

    • product

    • ID of the product.

Code Samples
    • .NET

      • using System;
        
        namespace RapydApiRequestSample
        {
            class Program
            {
                static void Main(string[] args)
                {
                    try
                    {
                        string product = "product_c015fad9ac74546b8b25aa8f588bda57";
        
                        string result = RapydApiRequestSample.Utilities.MakeRequest("DELETE", $"/v1/products/{product}");
        
                        Console.WriteLine(result);
                    }
                    catch (Exception e)
                    {
                        Console.WriteLine("Error completing request: " + e.Message);
                    }
                }
            }
        }
    • JavaScript

      • const makeRequest = require('<path-to-your-utility-file>/utilities').makeRequest;
        
        async function main() {
          try {
            const result = await makeRequest(
              'DELETE',
              '/v1/products/product_c015fad9ac74546b8b25aa8f588bda57'
            );
        
            console.log(result);
          } catch (error) {
            console.error('Error completing request', error);
          }
        }
    • PHP

      • <?php
        $path = $_SERVER['DOCUMENT_ROOT'];
        $path .= "/<path-to-your-utility-file>/utilities.php";
        include($path);
        
        try {
            $object = make_request('delete', '/v1/products/product_c015fad9ac74546b8b25aa8f588bda57');
            var_dump($object);
        } catch(Exception $e) {
            echo "Error: $e";
        }
        ?>
    • Python

      • from pprint import pprint
        
        from utilities import make_request
        
        result = make_request(method='delete', path='/v1/products/product_c015fad9ac74546b8b25aa8f588bda57')
        pprint(result)
  • /v1/products/:product

  • Delete Product

  • curl -X delete
    {base_url}/v1/products/product_c015fad9ac74546b8b25aa8f588bda57
    -H 'access_key: your-access-key-here'
    -H 'Content-Type: application/json'
    -H 'salt: your-random-string-here'
    -H 'signature: your-calculated-signature-here'
    -H 'timestamp: your-unix-timestamp-here'
    
  • {
        "status": {
            "error_code": "",
            "status": "SUCCESS",
            "message": "",
            "response_code": "",
            "operation_id": "6274c35c-0f9f-464f-a7f9-365259d88a54"
        },
        "data": {
            "deleted": true,
            "id": "product_c015fad9ac74546b8b25aa8f588bda57"
        }
    }