-
Notifications
You must be signed in to change notification settings - Fork 0
API Documentation
Derek Nungesser edited this page Feb 2, 2021
·
4 revisions
ScriptMe utilizes RESTful API.
API routes are not user-facing and should only be used by developers.
Save a single document of the specified id
| Parameter | Type | Description | Notes |
|---|---|---|---|
id |
ID |
id of the document to save |
required |
Retrieves a single document of the specified id
| Parameter | Type | Description | Notes |
|---|---|---|---|
id |
ID |
id of the document |
required |
Returns an object containing the document's information
Deletes a single document of the specified id
| Parameter | Type | Description | Notes |
|---|---|---|---|
id |
ID |
id of the document to delete |
required |
Create a project of the specified id
| Parameter | Type | Description | Notes |
|---|---|---|---|
id |
ID |
id of the project to create |
required |
Retrieves all documents of the specified project id
| Parameter | Type | Description | Notes |
|---|---|---|---|
id |
ID |
id of the project |
required |
Returns an array of containing the objects of documents within the specific project folder
Deletes a single project of the specified id
| Parameter | Type | Description | Notes |
|---|---|---|---|
id |
ID |
id of the project to delete |
required |
Save a single character of the specified id
| Parameter | Type | Description | Notes |
|---|---|---|---|
id |
ID |
id of the character to save |
required |
Retrieves all characters
| Parameter | Type | Description | Notes |
|---|---|---|---|
id |
ID |
id of the character |
required |
Returns an array containing the objects of the characters' information
Deletes a single character of the specified id
| Parameter | Type | Description | Notes |
|---|---|---|---|
id |
ID |
id of the character to delete |
required |