HTTP methods
Last updated
Last updated
Make API uses standard HTTP methods to interact with endpoints. The following table lists the available HTTP methods and shows examples of endpoints these methods can be used with.
HTTP method
Description
GET
Retrieves a resource representation without modifying it.
Example: returns all available Make scenarios
POST
Creates a resource.
Example: creates a scenario
PUT
Updates a resource. If the resource does not exist yet, this method creates it.
Example: sets custom properties data for a scenario with the specified ID
PATCH
Makes a partial update on a resource. Does not replace the entire resource.
Example: updates properties (for example, scheduling or blueprint) of the scenario with a given ID
DELETE
Removes a resource.
Example: deletes the scenario with a given ID