API Authentification
Orbitype exposes all full-featured RESTful API that you can connect to from your
own code. Read, create, update and delete items with simple HTTP requests.
Table of contents:
First steps
To get started, go to your project's setting page and generate a new API key.
Each key is scoped to exactly one connector. Make sure to include it in each
request as a custom
X-API-KEY
header. Sending an
HTTP OPTIONS
request to the API
base URL will return the ids of the project and connector the key is scoped
to.
Authentification Headers
To get started, go to your project's setting page and generate a new API key.
Each key is scoped to exactly one connector. Make sure to include it in each
request as a custom
X-API-KEY
header. Sending an
HTTP OPTIONS
request to the API
base URL will return the ids of the project and connector the key is scoped
to.
http request OPTIONS https://core.orbitype.com/api X-API-KEY: your-key-here
{
"projectId": "your-project-uuid",
"connectorId": "your-connector-uuid"
}