feat: begin adding copy function to code component

This commit is contained in:
Stevan Freeborn
2023-04-09 15:23:13 -05:00
parent 4c6257012d
commit 85e7934c05
7 changed files with 68 additions and 11 deletions
@@ -3,5 +3,3 @@
The Onspring API is organized around REST. It enables external programs to retrieve, save, and delete data within your Onspring instance. The Onspring API implements version 3 of the Open API Specification (OAS).
The Onspring API does support bulk operation for some, but not all endpoints. Bulk operations are not supported for endpoints that create, update, or delete data. The one exception is the bulk delete endpoint, which is used to delete multiple records at once.
The Onspring API is used to interact with any Onspring instance regardless of whether it is a development, test, or production instance.
+8 -4
View File
@@ -1,7 +1,11 @@
# Example
# Base URL
This is the example for the introduction page.
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" language="text" %}
```text
https://api.onspring.com
```
{% code language="javascript" %}
console.log('hello world');
{% /code %}