Theneo Sample OpenAPI Doc
Theneo APIs enable you to generate beautiful API documentations effortlessly. Why should only top companies like Stripe, Square, and Twilio have gorgeous documentations? With Theneo you can also generate API documents that you could be proud of. The Theneo API follows the general patterns of REST Please note: All the endpoints and API references discussed here are just for demo purposes, they are not functional
This is the documentation for version 1.0.0 of the API.
Servers:
- https://app.theneo.io - Theneo Sample API
What made this section unhelpful for you?
What made this section unhelpful for you?
Retrieves documentations
By passing in the appropriate options, you can search for
available API documentations
Title | Required? | Type | Description | Min Length | Max Length |
searchString | false | STRING | pass an optional search string for looking up inventory | ||
numberofDocs | false | INTEGER (int32) | number of documentations to return | ||
category | false | STRING | category of documentations to return | ||
sortBy | false | STRING | Allowed: dateUpdated, dateAdded. | ||
sortOrder | false | STRING | Allowed: asc, desc. asc is ascending and sorts from A to Z. desc is descending and sorts from Z to A. |
Header Parameters
Query Parameters
pass an optional search string for looking up inventory
number of documentations to return
category of documentations to return
Allowed: dateUpdated, dateAdded.
Allowed: asc, desc. asc is ascending and sorts from A to Z. desc is descending and sorts from Z to A.
Response
Response Attributes
What made this section unhelpful for you?
Response
[
{
"id": "demo",
"documentation": "Theneo Sample API Doc",
"key": "demo",
"category": "OpenAPI",
"dateAdded": "2016-08-29T09:12:33.001Z"
}
]
What made this section unhelpful for you?
Adds a documentation
to the system
Title | Required? | Type | Description | Min Length | Max Length |
documentation | true | string | The title of the documentation | ||
key | true | string | Unique Id of of the documentation | ||
category | false | string | category of the documentation (allowed categories TBD) |
Header Parameters
Body Parameters
The title of the documentation
Unique Id of of the documentation
category of the documentation (allowed categories TBD)
Response
Response Attributes
What made this section unhelpful for you?
Response
{
"id": "demo",
"documentation": "Theneo Sample API Doc",
"key": "demo",
"category": "OpenAPI",
"dateAdded": "2016-08-29T09:12:33.001Z"
}
What made this section unhelpful for you?
Deletes an API Doc
Delete the API Doc from the system
Title | Required? | Type | Description | Min Length | Max Length |
id | false | STRING | The documentation ID for the documentation you want to delete |
Header Parameters
Path Parameters
The documentation ID for the documentation you want to delete
What made this section unhelpful for you?
What made this section unhelpful for you?
Updates the API Doc
Update the API documentation details
Title | Required? | Type | Description | Min Length | Max Length |
id | false | STRING | The documentation ID for the documentation you want to update |
Header Parameters
Path Parameters
The documentation ID for the documentation you want to update
Response
Response Attributes
What made this section unhelpful for you?
Response
{
"key": "demo"
}
What made this section unhelpful for you?
Invite users to the document
Title | Required? | Type | Description | Min Length | Max Length |
documentatId | false | string | Unique ID of the document | ||
useremail | true | string | User email that you want to add to the project | ||
permission | false | string | What type of permission you would like to give it to them? Editor or Viewer |
Header Parameters
Body Parameters
Unique ID of the document
User email that you want to add to the project
What type of permission you would like to give it to them? Editor or Viewer
Response
Response Attributes
What made this section unhelpful for you?
Response
{
"id": "demo",
"documentation": "Theneo Sample API Doc",
"key": "demo",
"category": "OpenAPI",
"dateAdded": "2016-08-29T09:12:33.001Z"
}