GET api/General/OfferManage/GetRedeemptionGiftCardList?GiftOfUerID={GiftOfUerID}&PageNo={PageNo}&PageSize={PageSize}&SearchTerm={SearchTerm}&ValidityStartDate={ValidityStartDate}&ValidityEndDate={ValidityEndDate}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
GiftOfUerID

string

Required

PageNo

integer

Default value is 1

PageSize

integer

Default value is 10

SearchTerm

string

None.

ValidityStartDate

date

None.

ValidityEndDate

date

None.

Body Parameters

None.

Response Information

Resource Description

RedeemptionGiftCouponPagedAPIVM
NameDescriptionTypeAdditional information
GiftCards

Collection of RedeemptionGiftCouponView

None.

TotalRecords

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "GiftCards": [
    {
      "OfferID": 1,
      "OfferName": "sample string 2",
      "Code": "sample string 3",
      "OfferAmount": 4.0,
      "OfferDescription": "sample string 5",
      "CodeBGTheme": "sample string 6",
      "ValidityStartDate": "2025-12-07T09:58:48.8058088+05:30",
      "ValidityEndDate": "2025-12-07T09:58:48.8058088+05:30",
      "IsReedemableToWallet": true,
      "IsUsed": true
    },
    {
      "OfferID": 1,
      "OfferName": "sample string 2",
      "Code": "sample string 3",
      "OfferAmount": 4.0,
      "OfferDescription": "sample string 5",
      "CodeBGTheme": "sample string 6",
      "ValidityStartDate": "2025-12-07T09:58:48.8058088+05:30",
      "ValidityEndDate": "2025-12-07T09:58:48.8058088+05:30",
      "IsReedemableToWallet": true,
      "IsUsed": true
    }
  ],
  "TotalRecords": 1
}

application/xml, text/xml

Sample:
<RedeemptionGiftCouponPagedAPIVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/General.Operations.CustomModels">
  <GiftCards>
    <RedeemptionGiftCouponView>
      <Code>sample string 3</Code>
      <CodeBGTheme>sample string 6</CodeBGTheme>
      <IsReedemableToWallet>true</IsReedemableToWallet>
      <IsUsed>true</IsUsed>
      <OfferAmount>4</OfferAmount>
      <OfferDescription>sample string 5</OfferDescription>
      <OfferID>1</OfferID>
      <OfferName>sample string 2</OfferName>
      <ValidityEndDate>2025-12-07T09:58:48.8058088+05:30</ValidityEndDate>
      <ValidityStartDate>2025-12-07T09:58:48.8058088+05:30</ValidityStartDate>
    </RedeemptionGiftCouponView>
    <RedeemptionGiftCouponView>
      <Code>sample string 3</Code>
      <CodeBGTheme>sample string 6</CodeBGTheme>
      <IsReedemableToWallet>true</IsReedemableToWallet>
      <IsUsed>true</IsUsed>
      <OfferAmount>4</OfferAmount>
      <OfferDescription>sample string 5</OfferDescription>
      <OfferID>1</OfferID>
      <OfferName>sample string 2</OfferName>
      <ValidityEndDate>2025-12-07T09:58:48.8058088+05:30</ValidityEndDate>
      <ValidityStartDate>2025-12-07T09:58:48.8058088+05:30</ValidityStartDate>
    </RedeemptionGiftCouponView>
  </GiftCards>
  <TotalRecords>1</TotalRecords>
</RedeemptionGiftCouponPagedAPIVM>