appointmentsAppointmentIdDelete
Delete an appointment
/appointments/{appointmentId}
Usage and SDK Samples
curl -X DELETE\
-H "Accept: application/json"\
"//appointments/{appointmentId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.AppointmentsApi;
import java.io.File;
import java.util.*;
public class AppointmentsApiExample {
public static void main(String[] args) {
AppointmentsApi apiInstance = new AppointmentsApi();
String appointmentId = appointmentId_example; // String |
try {
Appointment result = apiInstance.appointmentsAppointmentIdDelete(appointmentId);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling AppointmentsApi#appointmentsAppointmentIdDelete");
e.printStackTrace();
}
}
}
import io.swagger.client.api.AppointmentsApi;
public class AppointmentsApiExample {
public static void main(String[] args) {
AppointmentsApi apiInstance = new AppointmentsApi();
String appointmentId = appointmentId_example; // String |
try {
Appointment result = apiInstance.appointmentsAppointmentIdDelete(appointmentId);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling AppointmentsApi#appointmentsAppointmentIdDelete");
e.printStackTrace();
}
}
}
String *appointmentId = appointmentId_example; //
AppointmentsApi *apiInstance = [[AppointmentsApi alloc] init];
// Delete an appointment
[apiInstance appointmentsAppointmentIdDeleteWith:appointmentId
completionHandler: ^(Appointment output, NSError* error) {
if (output) {
NSLog(@"%@", output);
}
if (error) {
NSLog(@"Error: %@", error);
}
}];
var HospitalAppointmentsBooking = require('hospital_appointments_booking');
var api = new HospitalAppointmentsBooking.AppointmentsApi()
var appointmentId = appointmentId_example; // {{String}}
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
api.appointmentsAppointmentIdDelete(appointmentId, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;
namespace Example
{
public class appointmentsAppointmentIdDeleteExample
{
public void main()
{
var apiInstance = new AppointmentsApi();
var appointmentId = appointmentId_example; // String |
try
{
// Delete an appointment
Appointment result = apiInstance.appointmentsAppointmentIdDelete(appointmentId);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling AppointmentsApi.appointmentsAppointmentIdDelete: " + e.Message );
}
}
}
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$api_instance = new Swagger\Client\ApiAppointmentsApi();
$appointmentId = appointmentId_example; // String |
try {
$result = $api_instance->appointmentsAppointmentIdDelete($appointmentId);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling AppointmentsApi->appointmentsAppointmentIdDelete: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::AppointmentsApi;
my $api_instance = WWW::SwaggerClient::AppointmentsApi->new();
my $appointmentId = appointmentId_example; # String |
eval {
my $result = $api_instance->appointmentsAppointmentIdDelete(appointmentId => $appointmentId);
print Dumper($result);
};
if ($@) {
warn "Exception when calling AppointmentsApi->appointmentsAppointmentIdDelete: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint
# create an instance of the API class
api_instance = swagger_client.AppointmentsApi()
appointmentId = appointmentId_example # String |
try:
# Delete an appointment
api_response = api_instance.appointments_appointment_id_delete(appointmentId)
pprint(api_response)
except ApiException as e:
print("Exception when calling AppointmentsApi->appointmentsAppointmentIdDelete: %s\n" % e)
Parameters
Path parameters
Name | Description |
---|---|
appointmentId* |
String
Required
|