-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Victor Westerlund edited this page May 26, 2023
·
6 revisions
Welcome to the Reflect Wiki!
Useful Wiki pages |
---|
Reflect CLI documentation |
The Response object |
Request validation with Rules |
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"]