Delete Hotel Stay
const options = {
method: 'DELETE',
headers: {'x-api-key': '<x-api-key>', 'x-organization-id': '<x-organization-id>'}
};
fetch('https://api.dcycle.io/v1/hotel-stays/{hotel_stay_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.dcycle.io/v1/hotel-stays/{hotel_stay_id}"
headers = {
"x-api-key": "<x-api-key>",
"x-organization-id": "<x-organization-id>"
}
response = requests.delete(url, headers=headers)
print(response.text)curl --request DELETE \
--url https://api.dcycle.io/v1/hotel-stays/{hotel_stay_id} \
--header 'x-api-key: <x-api-key>' \
--header 'x-organization-id: <x-organization-id>'Delete Hotel Stay
Delete a hotel stay record and its associated emissions
DELETE
/
v1
/
hotel-stays
/
{hotel_stay_id}
Delete Hotel Stay
const options = {
method: 'DELETE',
headers: {'x-api-key': '<x-api-key>', 'x-organization-id': '<x-organization-id>'}
};
fetch('https://api.dcycle.io/v1/hotel-stays/{hotel_stay_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.dcycle.io/v1/hotel-stays/{hotel_stay_id}"
headers = {
"x-api-key": "<x-api-key>",
"x-organization-id": "<x-organization-id>"
}
response = requests.delete(url, headers=headers)
print(response.text)curl --request DELETE \
--url https://api.dcycle.io/v1/hotel-stays/{hotel_stay_id} \
--header 'x-api-key: <x-api-key>' \
--header 'x-organization-id: <x-organization-id>'← Hotel Stays API
Permanently deletes a hotel stay record and its associated
total_impacts rows. This action cannot be undone.
Request
Headers
string
required
Your API key for authenticationExample:
sk_live_1234567890abcdefstring
required
Your organization UUIDExample:
a8315ef3-dd50-43f8-b7ce-d839e68d51faPath Parameters
string
required
The unique identifier (UUID) of the hotel stay to deleteExample:
550e8400-e29b-41d4-a716-446655440000Response
Returns204 No Content on success. No response body.
Example
curl -X DELETE "https://api.dcycle.io/v1/hotel-stays/550e8400-e29b-41d4-a716-446655440000" \
-H "x-api-key: ${DCYCLE_API_KEY}" \
-H "x-organization-id: ${DCYCLE_ORG_ID}"
import requests
import os
response = requests.delete(
"https://api.dcycle.io/v1/hotel-stays/550e8400-e29b-41d4-a716-446655440000",
headers={
"x-api-key": os.getenv("DCYCLE_API_KEY"),
"x-organization-id": os.getenv("DCYCLE_ORG_ID")
}
)
if response.status_code == 204:
print("Deleted successfully")
const axios = require('axios');
axios.delete(
'https://api.dcycle.io/v1/hotel-stays/550e8400-e29b-41d4-a716-446655440000',
{
headers: {
'x-api-key': process.env.DCYCLE_API_KEY,
'x-organization-id': process.env.DCYCLE_ORG_ID
}
}
)
.then(() => console.log('Deleted successfully'))
.catch(error => console.error(error));
Common Errors
401 Unauthorized
Cause: Missing or invalid API key{"detail": "Invalid API key for organization", "code": "INVALID_API_KEY"}
403 Forbidden
Cause: The authenticated user is not a member of the organization{"detail": "Logged User is not Member of Organization", "code": "LOGGED_USER_NOT_MEMBER"}
404 Not Found
Cause: The hotel stay ID does not exist or belongs to a different organization.{
"detail": "Hotel stay not found",
"code": "HOTEL_STAY_NOT_FOUND"
}
Related Endpoints
Bulk Delete
Delete multiple hotel stays at once
List Hotel Stays
Browse all hotel stays
Was this page helpful?