const getMethod: HttpMethod = 'GET'; // Retrieve data
const postMethod: HttpMethod = 'POST'; // Create new resource
const putMethod: HttpMethod = 'PUT'; // Update entire resource
const patchMethod: HttpMethod = 'PATCH'; // Partial update
const deleteMethod: HttpMethod = 'DELETE'; // Remove resource
Supported HTTP methods for API requests