Custom Plan

Learn about our latest and most flexible plan.

Custom plan is a new but much more flexible plan type for our device protection product. It allows partners to specify the premium they want to pay and enjoy X10 of the amount in coverage. kindly note that the minimum pricing for custom plans is ₦ 20, 000.

Below, we give an instance of how a custom plan is priced and a description of how it works.

Price per device for 6 Months: ₦ 20, 000 (minimum)

Coverage: ₦ 200, 000 (X10)

How to Create a Custom Plan

Below, we provide a detailed method to purchase the custom plan via API.

Create a Custom Plan

POST https://api.getgamp.com/v1/plan/create

Creates a new custom plan

Headers

NameTypeDescription

Authorization*

String

Set value to Bearer SECRET_KEY

Request Body

NameTypeDescription

product*

String

"device_protection_plan".

planType*

String

"custom"

deviceType*

String

The type of device being purchased. It can be set as either 'phone' or 'laptop'.

duration*

Number

The duration of the plan in months. Accepted durations include 6 & 12

metadata

Object

JSON object of custom data. The custom data can be determined by the developer and will be available on the plan document/instance for reference.

customer*

Object

JSON object of customer data containing the customer's email and phoneNumber keys.

uniqueDeviceNumber

String

The IMEI/Serial number of device to be covered by the plan

pricePerDevice

String

The price per 6 months protection that the user needs to pay to access X10 of coverage through custom protection. It is needed for creating custom (flexible) protection plans.

{
    "success": true,
    "message": "Plan Created Successfully",
    "data": {
        "uid": "vxp7uuw120211129184515",
        "planId": "dpp8802992022022475737",
        "reference": "wr0qey220220224757",
        "clientId": "um8d2022dxqxnn6a0219",
        "businessId": "bus9076412022027132655",
        "product": "device_protection_plan",
        "planType": "custom",
        "token": "007m2022022475737",
        "createdAt": "2022-02-24T06:57:36.856Z",
        "expiryDate": "2022-08-24T06:57:36.856Z",
        "duration": 6,
        "activatedDevices": 0,
        "claimedDevices": 0,
        "price": 22000,
        "totalClaims": 0,
        "totalClaimsProcessed": 0,
        "history": [
            {
                "action": "Plan Purchased through API",
                "actionBy": "t+a291121@getgamp.com",
                "reason": "",
                "uid": "vxp7uuw120211129184515",
                "createdAt": "2022-02-24T06:57:37.038Z"
            }
        ],
        "pricePerLaptop": 22000,
        "pricePerDevice": 22000,
        "numOfLaptops": 1
    },
    "statusCode": 200
}

Last updated