-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Victor Westerlund edited this page Nov 17, 2022
·
6 revisions
Here are some guides and docs on how to use the Reflect API framework to build REST endpoints for your project.
Read the Get Started guide for how to create your first endpoint using Reflect!
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"]