Fetch Client API Documentation - v1.1.1
    Preparing search index...

    Type Alias HttpMethod

    HttpMethod: "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | "HEAD" | "OPTIONS"

    Supported HTTP methods for API requests

    Standard HTTP methods commonly used in REST APIs

    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