Quick Start

Get your API keys

Your API's 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.

circle-info

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

  • companyId

This section is restricted to administrators.

Make your first request

To make your first request, send an authenticated request to the endpoint. This will return it a company info

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

curl '{{ url_base}}/api/v1/Company/info \
-X GET \
-H "accept:  */*" \
-H "Authorization: Bearer {{ token }}" \
-H "x-company-id: {{ companyId }}" \
-H "Content-Type: application/json"

Last updated