GET api/applicant/citizendashboard/renewal-alerts?userID={userID}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
userID

string

Required

Body Parameters

None.

Response Information

Resource Description

ApiResponseOfRenewalAlertDTO
NameDescriptionTypeAdditional information
Success

boolean

None.

Message

string

None.

Data

RenewalAlertDTO

None.

Response Formats

application/json, text/json

Sample:
{
  "Success": true,
  "Message": "sample string 2",
  "Data": {
    "ApplicationID": "sample string 1",
    "CertificateNumber": "sample string 2",
    "ValidityUpto": "2026-06-24T22:07:25.7637895+05:30",
    "DaysToExpire": 1,
    "HasMultipleRenewals": true
  }
}

application/xml, text/xml

Sample:
<ApiResponseOfRenewalAlertDTOMTRdQN6P xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tourism.Entities.Models">
  <Data xmlns:d2p1="http://schemas.datacontract.org/2004/07/">
    <d2p1:ApplicationID>sample string 1</d2p1:ApplicationID>
    <d2p1:CertificateNumber>sample string 2</d2p1:CertificateNumber>
    <d2p1:DaysToExpire>1</d2p1:DaysToExpire>
    <d2p1:HasMultipleRenewals>true</d2p1:HasMultipleRenewals>
    <d2p1:ValidityUpto>2026-06-24T22:07:25.7637895+05:30</d2p1:ValidityUpto>
  </Data>
  <Message>sample string 2</Message>
  <Success>true</Success>
</ApiResponseOfRenewalAlertDTOMTRdQN6P>