-
Notifications
You must be signed in to change notification settings - Fork 0
API Documentation
Shidan Javaheri edited this page May 12, 2023
·
10 revisions
Behold: our API documentation! 📚 Click on each endpoint to see more information. All API documenation follows the following format:
GET/POST/PUT/DELETE: /pathToEndpoint
Description of what endpoint does
type parameter
description of parameter
{
"id": "String",
"message": "String",
"additionalContact": "String",
"status": "Status"
}
POST: /api/account
Allows a user to create an account. Must be logged in with an account with Authority 'Server' to access it.
AccoutDto
the account DTO object
An account Dto object
{
"username": "String",
"password": "String",
"firstname": "String",
"lastname": "String"
}