Retrieve Provider Bouquets

This endpoint allows you to retrieve provider bouquets.

❗️

NOTE:
This Endpoint should only be used/called for a change of bouquet or subscription plans only, otherwise, the customer should use the subscription renewal (Free Entry) option

POST https://payments.baxipay.com.ng/api/baxipay/services/multichoice/list

Retrieve Provider Bouquets

Service types can be dstv, gotv, startimes.

Multichoice

Parameters

Header

Authorization string Please see the authentication page

Body

service_type string This service type can either be dstv, gotv, or startimes.

Responses

  • 200 data: This is an array containing a list of Objects.

                                                                    Each Object is a bouquet type containing:
                                                                    - availablePricingOption: An array containing a list of objects
                                                                    containing:
                                                                        - monthsPaidFor: Number of months.
                                                                        - price: Price for that number of months specified above.
                                                                        - invoicePeriod: Invoice period covers.
                                                                     - code: Identification code of the bouquet.
                                                                     - name: This is the name of the bouquet.
                                                                     - description: Description for the bouquet.
    
{
  "status": "success",
  "message": "Successful",
  "code": 200,
  "data": [
    {
      "availablePricingOptions": [
        {
          "monthsPaidFor": 1,
          "price": 2000,
          "invoicePeriod": 1
        },
        ....
      ],
      "code": "ACSSE36",
      "name": "DStv Access",
      "description": " "
    },
    {
      "availablePricingOptions": [{...},{...},{...}],
      "code": "CODE_HERE",
      "name": "BOUQUET NAME",
      "description: "BOUQUET DESCRIPTION"
    }
  ]
}