/
appointment_delete ()

appointment_delete ()

Function prototype

appointment_delete (session, ref)

API Version

2.7.32 and higher

Supported interfaces

SOAP, REST

Description

Deletes (cancels) an existing appointment

Required permissions: The active user must be the organizer of the appointment. Otherwise an INSUFFICIENT_PRIVILEGES error will be returned.

The deletion of an appointment triggers some actions (e.g. sending invitations to the members) that are described in APPOINTMENT WEB SERVICES

Input parameters:

  • session: is the session token obtained in the session_init() call

  • ref: Reference of the appointment. This reference can be obtained when the appointment is created using the API function appointment_create() or from the list of appointments returned by appointment_list ()

Output parameters:

  • result: empty

  • ErrorMsg: If any error occurs, then this value contains a description of the error translated to the current language

  • ErrorCode: If any error occurs, then this value contains any of the standard ERROR CODES

Request example

appointment_delete ( “LCAAAAAAAAAAAA”, 12545)

Response

The response format is XML when the function has been invoked via the SOAP API, and JSON when it has been invoked via the REST API

Return Error codes

ERROR CODE

 

ERROR CODE

 

INVALID_TOKEN

The session token provided is not valid

INSUFFICIENT_PRIVILEGES

The session user does not have the necessary privileges to delete the appointment

APPOINTMENT.NOT_FOUND

The requested appointment doesn’t exist or the active USER is not member.



Related content