Skip to content
Victor Westerlund edited this page May 26, 2023 · 6 revisions

Group 1

Welcome to the Reflect Wiki!

wiki_get_started

Useful Wiki pages
Reflect CLI documentation
The Response object
Request validation with Rules

The OPTIONS method

You can always check which methods of an endpoint you're allowed to call by sending an OPTIONS request. If no API key is provided, the default HTTP_ANYONE_KEY will be used to check methods available to the public (anonymous requests).

$ curl https://example.com/ping -X OPTIONS

# Response is JSON array of allowed methods: ["GET,"POST"]
Clone this wiki locally