⚙️
Elyssa App API
  • Elyssa App API
  • API plans and prices
  • Quick Start
  • Authentication
  • API versioning
  • Reference
    • API Reference
      • Properties
      • Inventories
Powered by GitBook
On this page
  • Get your API keys
  • Make your first request

Quick Start

Get your API keys

Your API requests are authenticated using API keys. Any request that doesn't include an API key will return an error.

You can generate an API key from your Dashboard at any time.

Go to Elyssa App Dashboard and select : Profile section > Integration

  • companyId

That section is just visible to admin user.

Make your first request

To make your first request, send an authenticated request to the pets endpoint. This will create a pet, which is nice.

API Reference

Take a look at how you might call this method using our official libraries, or via curl:

curl 'https://api-elyssa-app.azurewebsites.net/property/get_properties/b94e467-27c8-4a14-8c1e-c70133cc73c5 \
 -X GET \
-H "accept:  */*" \
-H "Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9" \
-H "Content-Type: application/json"
// require the featch module and set it up with your API key

(async () => {
    const response = await fetch(
    'https://api-elyssa-app.azurewebsites.net/get_properties/b94e467-27c8-4a14-8c1e-c70133cc73c5 \
    {
    headers: {
        "Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9",
    });
    const body = await response.json();
    console.log(body);
})();
PreviousAPI plans and pricesNextAuthentication

Last updated 8 months ago