Skip to content

HTTP Methods

Flamingo supports 7 HTTP methods, each color-coded for quick visual recognition.

MethodColorCommon Use
GETGreenRetrieve resources
POSTBlueCreate new resources
PUTAmberUpdate/replace resources
PATCHPurplePartial updates
DELETERedRemove resources
OPTIONSGrayDescribe communication options
HEADGrayRetrieve headers without body

Click the method dropdown next to the URL bar and pick the desired method. The selection updates the color badge and affects available body types (GET and HEAD typically use none body type).

The method color appears in:

  • The method dropdown button
  • Request history entries
  • Collection request items
  • Favorites list
GET https://api.example.com/users # List users
POST https://api.example.com/users # Create user
GET https://api.example.com/users/1 # Get user by ID
PUT https://api.example.com/users/1 # Update user
DELETE https://api.example.com/users/1 # Delete user