GET Api/Resource/Schedule/ExtraCode?startDate={startDate}&endDate={endDate}
returns the scheduledextraCodeInfo's that belong the the logged in user
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| startDate | date |
Required |
|
| endDate | date |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of ScheduledExtraCodeInfo| Name | Description | Type | Additional 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": "2025-11-01T18:36:05.5524443+01:00",
"BeginTime": "2025-11-01T18:36:05.5524443+01:00",
"EndTime": "2025-11-01T18:36:05.5524443+01:00",
"AcknowledgedID": 6
},
{
"ExtraCode": null,
"SchedulingID": 2,
"PlannerComment": "sample string 1",
"Date": "2025-11-01T18:36:05.5524443+01:00",
"BeginTime": "2025-11-01T18:36:05.5524443+01:00",
"EndTime": "2025-11-01T18:36:05.5524443+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>2025-11-01T18:36:05.5524443+01:00</Date>
<BeginTime>2025-11-01T18:36:05.5524443+01:00</BeginTime>
<EndTime>2025-11-01T18:36:05.5524443+01:00</EndTime>
<AcknowledgedID>6</AcknowledgedID>
<ExtraCode i:nil="true" />
<PlannerComment>sample string 1</PlannerComment>
</ScheduledExtraCodeInfo>
<ScheduledExtraCodeInfo>
<SchedulingID>2</SchedulingID>
<Date>2025-11-01T18:36:05.5524443+01:00</Date>
<BeginTime>2025-11-01T18:36:05.5524443+01:00</BeginTime>
<EndTime>2025-11-01T18:36:05.5524443+01:00</EndTime>
<AcknowledgedID>6</AcknowledgedID>
<ExtraCode i:nil="true" />
<PlannerComment>sample string 1</PlannerComment>
</ScheduledExtraCodeInfo>
</ArrayOfScheduledExtraCodeInfo>