HTTP Actions Flashcards
1
Q
GET
A
Retrieves data from the server
2
Q
GET Example
A
Querying the balance of a wallet
3
Q
POST
A
Sends data to the server to create a new resource
4
Q
POST Example
A
Submitting a transaction in a smart contract
5
Q
PUT
A
Updates an existing resource on the server
6
Q
PUT Example
A
Updating user data
7
Q
DELETE
A
Removes a resource from the server
8
Q
DELETE Example
A
Removes a users account from the server
9
Q
HttpResponseMessage
A
Complete HTTP response, including status, headers, and data
10
Q
IHttpActionResult
A
Response in the form of an API
11
Q
HttpResponseResult
A
Response featuring only essential data
12
Q
Void
A
A request that performs an operation without returning data.