feat: add some content for version 1
This commit is contained in:
@@ -2,5 +2,13 @@ import { DocsStructure } from '@/app/types/types';
|
|||||||
|
|
||||||
export const versionOne: DocsStructure = {
|
export const versionOne: DocsStructure = {
|
||||||
version: 'version_001',
|
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 %}
|
||||||
Reference in New Issue
Block a user