GET Api/Resource/Schedule/ExtraCode?startDate={startDate}&endDate={endDate}

returns the scheduledextraCodeInfo's that belong the the logged in user

Request Information

URI Parameters

NameDescriptionTypeAdditional information
startDate

date

Required

endDate

date

Required

Body Parameters

None.

Response Information

Resource Description

Collection of ScheduledExtraCodeInfo
NameDescriptionTypeAdditional information
ExtraCode

ExtraCode

None.

PlannerComment

string

None.

SchedulingID

integer

None.

Date

date

None.

BeginTime

date

None.

EndTime

date

None.

AcknowledgedID

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ExtraCode": null,
    "SchedulingID": 2,
    "PlannerComment": "sample string 1",
    "Date": "2024-12-22T08:00:10.0846233+01:00",
    "BeginTime": "2024-12-22T08:00:10.0846233+01:00",
    "EndTime": "2024-12-22T08:00:10.0846233+01:00",
    "AcknowledgedID": 6
  },
  {
    "ExtraCode": null,
    "SchedulingID": 2,
    "PlannerComment": "sample string 1",
    "Date": "2024-12-22T08:00:10.0846233+01:00",
    "BeginTime": "2024-12-22T08:00:10.0846233+01:00",
    "EndTime": "2024-12-22T08:00:10.0846233+01:00",
    "AcknowledgedID": 6
  }
]

application/xml, text/xml

Sample:
<ArrayOfScheduledExtraCodeInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Paralax.Cas.Web.WebServices.Models">
  <ScheduledExtraCodeInfo>
    <SchedulingID>2</SchedulingID>
    <Date>2024-12-22T08:00:10.0846233+01:00</Date>
    <BeginTime>2024-12-22T08:00:10.0846233+01:00</BeginTime>
    <EndTime>2024-12-22T08:00:10.0846233+01:00</EndTime>
    <AcknowledgedID>6</AcknowledgedID>
    <ExtraCode i:nil="true" />
    <PlannerComment>sample string 1</PlannerComment>
  </ScheduledExtraCodeInfo>
  <ScheduledExtraCodeInfo>
    <SchedulingID>2</SchedulingID>
    <Date>2024-12-22T08:00:10.0846233+01:00</Date>
    <BeginTime>2024-12-22T08:00:10.0846233+01:00</BeginTime>
    <EndTime>2024-12-22T08:00:10.0846233+01:00</EndTime>
    <AcknowledgedID>6</AcknowledgedID>
    <ExtraCode i:nil="true" />
    <PlannerComment>sample string 1</PlannerComment>
  </ScheduledExtraCodeInfo>
</ArrayOfScheduledExtraCodeInfo>