Getting Started
Getting started with Xenia's API
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.
Install the library
The best way to interact with our API is to use one of our official libraries:
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.
Create a new location
POST
https://api.xenia.team/v1/locations
Create new location
Headers
Name
Type
Description
Authorization*
JWT Token
Access token
Request Body
Name
Type
Description
name*
string
The name of location
description
string
parentId
string
id of parent location
Take a look at how you might call this method using our official libraries, or via curl
:
Last updated