Skip to main content

QHTTPVerb

@quik/http


@quik/http / QHTTPVerb

Enumeration: QHTTPVerb

Defined in: http/src/enums/QHTTPVerb.ts:5

A list with the supported HTTP Verbs that can be used in the application.

Enumeration Members

DELETE

DELETE: "delete"

Defined in: http/src/enums/QHTTPVerb.ts:29

HTTP DELETE Verb

You should use this HTTP Verb when you want to delete an item from the server.


GET

GET: "get"

Defined in: http/src/enums/QHTTPVerb.ts:11

HTTP GET Verb

You should use this HTTP Verb when you want to get data from the server.


PATCH

PATCH: "patch"

Defined in: http/src/enums/QHTTPVerb.ts:35

HTTP PATCH Verb

You should use this HTTP Verb when you want to update specific items from the server.


POST

POST: "post"

Defined in: http/src/enums/QHTTPVerb.ts:17

HTTP POST Verb

You should use this HTTP Verb when you want to create an item or perform some specific actions on the backend.


PUT

PUT: "put"

Defined in: http/src/enums/QHTTPVerb.ts:23

HTTP PUT Verb

You should use this HTTP Verb when you want to update the whole item.