1
0

Initial Laravel 12 API Project

This commit is contained in:
Wian Drs
2026-06-16 23:58:35 +07:00
commit ce7e7b79a4
65 changed files with 12010 additions and 0 deletions
+60
View File
@@ -0,0 +1,60 @@
{
"openapi": "3.0.0",
"info": {
"title": "Services Core API",
"description": "API Backend Services Core",
"version": "1.0.0"
},
"servers": [
{
"url": "http://127.0.0.1:8000",
"description": "Local Development Server"
}
],
"paths": {
"/api/login": {
"post": {
"tags": [
"Authentication"
],
"summary": "Login User",
"operationId": "a3b306d14572d1f4bd6c064b3233e7b8",
"requestBody": {
"required": true,
"content": {
"application/json": {
"schema": {
"required": [
"email",
"password"
],
"properties": {
"email": {
"type": "string",
"example": "admin@test.com"
},
"password": {
"type": "string",
"example": "123456"
}
},
"type": "object"
}
}
}
},
"responses": {
"200": {
"description": "Login Success"
}
}
}
}
},
"tags": [
{
"name": "Authentication",
"description": "Authentication"
}
]
}