POST api/{programid}/Consumer/{consumerNo}/LiveInExemptionDates/{providerNo}

Gets the live in exemption dates for the consumer provider pair

Request Information

URI Parameters

NameDescriptionTypeAdditional information
programid

string

Required

consumerNo

string

Required

providerNo

string

Required

Body Parameters

None.

Response Information

Resource Description

LiveInExemptionResponse
NameDescriptionTypeAdditional information
LiveInExemptionPeriods

Collection of LiveInExemptionPeriod

None.

Response Formats

application/json, text/json

Sample:
{
  "LiveInExemptionPeriods": [
    {
      "StartDate": "2024-11-16T09:55:54.7016037+00:00",
      "EndDate": "2024-11-16T09:55:54.7016037+00:00"
    },
    {
      "StartDate": "2024-11-16T09:55:54.7016037+00:00",
      "EndDate": "2024-11-16T09:55:54.7016037+00:00"
    }
  ]
}

application/xml, text/xml

Sample:
<LiveInExemptionResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PPL.Services.WebApi.Models.Consumer">
  <LiveInExemptionPeriods>
    <LiveInExemptionResponse.LiveInExemptionPeriod>
      <EndDate>2024-11-16T09:55:54.7016037+00:00</EndDate>
      <StartDate>2024-11-16T09:55:54.7016037+00:00</StartDate>
    </LiveInExemptionResponse.LiveInExemptionPeriod>
    <LiveInExemptionResponse.LiveInExemptionPeriod>
      <EndDate>2024-11-16T09:55:54.7016037+00:00</EndDate>
      <StartDate>2024-11-16T09:55:54.7016037+00:00</StartDate>
    </LiveInExemptionResponse.LiveInExemptionPeriod>
  </LiveInExemptionPeriods>
</LiveInExemptionResponse>