Skip to content

URL and HTTP method

Every API Request tool starts with a base URL and HTTP method. Chatevo substitutes path parameters and appends query parameters at runtime.

MethodTypical use
GETRead-only lookups (order status, availability, search)
POSTCreate resources or actions that need a body
PUTFull replace of a resource
PATCHPartial update
DELETERemove or cancel a resource

Use a full HTTPS URL. Path variables use {param_name} placeholders:

https://api.example.com/v1/orders/{order_id}
https://api.example.com/v1/hotels/{hotel_id}/rooms
RuleDetail
Schemehttps:// required in production
Path paramsMatch placeholders in the URL — see Path parameters
Trailing slashMatch your API exactly — some servers treat /orders and /orders/ differently
MethodBody
GET, DELETENo JSON body — use path and query params only
POST, PUT, PATCHOptional or required JSON body schema
ToolMethodURL
Order lookupGEThttps://api.store.com/orders/{order_id}
Room searchGEThttps://api.hotel.com/offers
Create bookingPOSThttps://api.hotel.com/bookings
Update profilePATCHhttps://api.crm.com/contacts/{contact_id}
  • Put dynamic segments in the path when they identify a resource ({order_id}).
  • Put filters, pagination, and search terms in query params (?status=shipped&page=2).
  • Keep URLs stable — changing the URL after go-live requires updating the tool and re-testing.