Files
FirstCore/app/swagger/digifi_swagger.json
T
2025-04-13 21:28:03 -04:00

116 lines
3.1 KiB
JSON

{
"openapi": "3.0.3",
"info": {
"title": "Swagger OfficeCore - OpenAPI 3.0",
"description": "This is a Simbrella FirstAdvance BackOffice Server with the OpenAPI 3.0 specification. \n\n\nSome useful links:\n- [Web Simulated Demo Page](https://digifi-salaryloan.chiefsoft.net/)\n- [Web Management Support Portal](https://digifi-office.chiefsoft.net/auth/login)",
"termsOfService": "http://swagger.io/terms/",
"contact": {
"email": "support@chiefsoft.com"
},
"license": {
"name": "Apache 2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0.html"
},
"version": "1.0.11"
},
"servers": [
{
"url": "http://localhost:4700"
},
{
"url": "http://www.simbrellang.net:4700"
},{
"url" : "http://10.10.11.17:4700"
}
],
"tags": [
{
"name": "Authorize",
"description": "This feature will be used for authorizing customers.",
"externalDocs": {
"description": "Find out more",
"url": "https://www.simbrellang.net"
}
},
{
"name": "AuthorizeRefresh",
"description": "This feature will be used for refreshing authorized customers.",
"externalDocs": {
"description": "Find out more",
"url": "https://www.simbrellang.net"
}
},
{
"name": "Loans",
"description": "Get all loans with optional filtering.",
"externalDocs": {
"description": "Find out more",
"url": "https://www.simbrellang.net"
}
},
{
"name": "Transactions",
"description": "Get all transactions with optional filtering.",
"externalDocs": {
"description": "Find out more",
"url": "https://www.simbrellang.net"
}
}
],
"paths": {
"/Authorize": {
"$ref": "../swagger/paths/Authorize.json"
},
"/AuthorizeRefresh": {
"$ref": "../swagger/paths/AuthorizeRefresh.json"
},
"/loans": {
"$ref": "../swagger/paths/Loans.json"
},
"/transactions": {
"$ref": "../swagger/paths/Transactions.json"
}
},
"components": {
"schemas": {
"ApiResponse": {
"$ref": "../swagger/schemas/ApiResponse.json"
},
"AuthorizeResponse": {
"$ref": "../swagger/schemas/AuthorizeResponse.json"
},
"AuthorizeRequest": {
"$ref": "../swagger/schemas/AuthorizeRequest.json"
},
"AuthorizeRefreshResponse": {
"$ref": "../swagger/schemas/AuthorizeRefreshResponse.json"
},
"AuthorizeRefreshRequest": {
"$ref": "../swagger/schemas/AuthorizeRefreshRequest.json"
},
"LoansResponse": {
"$ref": "../swagger/schemas/LoansResponse.json"
},
"TransactionsResponse": {
"$ref": "../swagger/schemas/TransactionsResponse.json"
}
},
"securitySchemes": {
"basicAuth": {
"type": "http",
"scheme": "basic"
},
"bearerAuth": {
"type": "http",
"scheme": "bearer",
"bearerFormat": "JWT"
}
}
},
"security": [
{
"basicAuth": [],
"bearerAuth": []
}
]
}