feat: add some content for version 1

This commit is contained in:
Stevan Freeborn
2023-04-12 11:18:38 -05:00
parent 955de7db83
commit 0b9ebcb71c
3 changed files with 23 additions and 1 deletions
+9 -1
View File
@@ -2,5 +2,13 @@ import { DocsStructure } from '@/app/types/types';
export const versionOne: DocsStructure = {
version: 'version_001',
docs: [],
docs: [
{
title: 'Introduction',
folder: 'introduction',
copy: 'copy.md',
example: 'example.md',
children: [],
},
],
};
@@ -0,0 +1,3 @@
# Introduction {% #introduction %}
The Onspring API is organized around REST. It enables external programs to retrieve, save, and delete data within your Onspring instance. The Onspring API does not support bulk operation for some, but not all endpoints.
@@ -0,0 +1,11 @@
# Base URL
The base url for the Onspring API will be the same for all instances regardless of whether the instances is a development, test, or production instance.
{% code heading="BASE URL" defaultLanguage="text" %}
```text
https://api.onspring.com/v1
```
{% /code %}