Retrieve Coupon Pool Profile By Id

Retrieve Coupon Pool Profile By Id

This GetCouponPoolProfileById API provides detailed information about the coupon pool profile by ID.

Request Parameters

Id Int (Required)

The coupon pool profile ID

Response

Id Int(Not Nullable)

The coupon pool profile’s unique identifier.

Name String(Not Nullable)

The Name of the coupon pool profile.

Description String(Nullable)

The Description of the coupon pool profile.

CenterId Int(Not Nullable)

The Id of the Center associated with this coupon pool profile.

CenterName String(Not Nullable)

The name of the Center associated with this coupon pool profile.

DurationDays Int(Not Nullable)

The days till when coupon pool profile is valid.

ProductCode String(Nullable)

The code of product for which coupon pool profile is added.

ProgramId Int(Not Nullable)

The program Id choosen for coupon pool profile.

ProgramName String(Not Nullable)

The program Name choosen for coupon pool profile.

HtmlDescription String(Nullable)

The html description added for the coupon pool profile.

Created DateTime(Not Nullable)

The datetime on which coupon pool profile was created.

LastModified DateTime(Not Nullable)

The datetime on which coupon pool profile was created.

Courses Array (Nullable)

The courses Id list that is added to the coupon pool profile.

				
					{
  "success": true,
  "message": "Data retrieved successfully.",
  "data": {
    "id": 3,
    "name": "DEMO Apps Coupon Pool - 1 year",
    "description": "testing",
    "centerId": 209,
    "centerName": "Demo Centers",
    "durationDays": 0,
    "productCode": "T001",
    "programId": 1,
    "programName": "Information Technology",
    "htmlDescription": null,
    "created": "2010-01-26 00:06:13",
    "lastModified": "2024-11-25 14:59:07",
    "courses": [
      {
        "id": 8464
      },
      {
        "id": 2659
      }
    ]
  }
}