Skip to content

GitLab

  • Projects
  • Groups
  • Snippets
  • Help
    • Loading...
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in
P Portal-api
  • Project overview
    • Project overview
    • Details
    • Activity
  • Issues 0
    • Issues 0
    • List
    • Boards
    • Labels
    • Service Desk
    • Milestones
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Members
    • Members
  • Activity
  • Create a new issue
  • Issue Boards
Collapse sidebar
  • doc
  • Portal-api
  • Wiki
  • Home

Home · Changes

Page history
Update home authored Apr 11, 2022 by Jurjen Brouwer's avatar Jurjen Brouwer
Hide whitespace changes
Inline Side-by-side
Showing with 27 additions and 4 deletions
+27 -4
  • home.md home.md +27 -4
  • No files found.
home.md
View page @ a4256c60
# Portal API
The [portal.robotsindeklas.nl](https://portal.robotsindeklas.nl)
provides a public API that can be used to automate certain tasks, e.g. creating new users and sharing standardized apps with them.
The [portal.robotsindeklas.nl](https://portal.robotsindeklas.nl) provides a public API that can be used to automate certain tasks, e.g. creating new users and sharing standardized apps with them.
## 1. Introduction
......@@ -20,11 +19,35 @@ The base URL for our REST API calls looks like this:
https://portal.robotsindeklas.nl/API/v1
```
### 2.2 Requesting token
### 2.2 Request methods
Please note that you should use the POST method for your request unless indicated otherwise.
### 2.3 Parameters
The parameters for the requests should be defined in the body of the request in JSON format.
### 2.4 Requesting token
```
https://portal.robotsindeklas.nl/API/v1/auth/getToken
```
```
{
"username": "USERNAME",
"password": "PASSWORD",
"domain": "DOMAIN"
}
```
Example:
```
{
"username": "Pietje",
"password": "Password123!",
"domain": "API School"
}
```
### 2.4 Request methods
### 2.5 Items
......
Clone repository
  • App API
  • Folder API
  • Group API
  • Robot API
  • User API
  • Home