GET api/Tasks/Conflicts

Retrieves a list of conflicts (if any) with a proposed appointment.

Request

Parameters

Name Description Default
date Starting appointment date and time.
duration Appointment duration (in hours). 0.5
member Member code or unique member ID. Omit if checking venue only.
venue Optional appointment venue/resource to include in checks.

Response

Body

Content Type: application/xml or application/json
List of conflicts or an error message.

XML JSON
<Response>                     
  <Result>                     <!--Array of 'Item'--> 
    <Item>string</Item>        
  </Result>                    
  <Message>string</Message>    <!--Error message--> 
</Response>                    
{                             
   "Result": [ "string" ],    
   "Message": "string"        // Error message
}                             
                              

Status Codes

Code Condition
200 OK The operation completed successfully.
204 No ContentNo conflicts were detected.
400 Bad RequestInvalid date or member.
401 Unauthorized Access token is invalid, expired or not specified.
406 Not Acceptable Content type specified in the Accept header isn't supported.
500 Internal Server Error An internal error occurred.

Remarks

Conflicts occur according to the same criteria as the availability check (see GET Availability).