Waiting for engine...
Skip to main content

HttpMethod

Defines the standard HTTP methods used in API requests and responses.

enum HttpMethod {
GET
HEAD
POST
PUT
DELETE
CONNECT
OPTIONS
TRACE
PATCH
}

Values

HttpMethod.GET {#get}

HTTP GET method for retrieving resources.

HttpMethod.HEAD {#head}

HTTP HEAD method for retrieving response headers only.

HttpMethod.POST {#post}

HTTP POST method for creating new resources.

HttpMethod.PUT {#put}

HTTP PUT method for updating existing resources.

HttpMethod.DELETE {#delete}

HTTP DELETE method for removing resources.

HttpMethod.CONNECT {#connect}

HTTP CONNECT method for establishing tunnels.

HttpMethod.OPTIONS {#options}

HTTP OPTIONS method for querying server capabilities.

HttpMethod.TRACE {#trace}

HTTP TRACE method for diagnostic purposes.

HttpMethod.PATCH {#patch}

HTTP PATCH method for partial resource updates.

Member Of

CorsAccessControl object ●  DeployedApiCallDetailData object ●  DeployedApiCallSummaryData object ●  DeployedApiCors object ●  DeployedApiCorsInput input ●  DeployedApiPolicyRule object ●  DeployedApiPolicyRuleCreateInput input ●  DeployedApiPolicyRuleInput input ●  HealthCheck object

On this Page