POST api/Education/CheckResourceDuplicateShiftTimes

Request Information

URI Parameters

None.

Body Parameters

CheckDuplicateShiftTimesModel
NameDescriptionTypeAdditional information
ShiftStartTime

string

None.

ShiftEndTime

string

None.

UserProfileID

integer

None.

TempUserProfileID

integer

None.

ResourceID

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "ShiftStartTime": "sample string 1",
  "ShiftEndTime": "sample string 2",
  "UserProfileID": 1,
  "TempUserProfileID": 1,
  "ResourceID": 1
}

application/xml, text/xml

Sample:
<CheckDuplicateShiftTimesModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessAccessLayer.Model">
  <ResourceID>1</ResourceID>
  <ShiftEndTime>sample string 2</ShiftEndTime>
  <ShiftStartTime>sample string 1</ShiftStartTime>
  <TempUserProfileID>1</TempUserProfileID>
  <UserProfileID>1</UserProfileID>
</CheckDuplicateShiftTimesModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Result
NameDescriptionTypeAdditional information
Status

ResultStatus

None.

Message

string

None.

Data

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "Status": 100,
  "Message": "sample string 1",
  "Data": {}
}

application/xml, text/xml

Sample:
<Result xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessAccessLayer.Generics">
  <Data />
  <Message>sample string 1</Message>
  <Status>Success</Status>
</Result>