Updated Docs

This commit is contained in:
Azeez Muibi
2025-03-26 14:48:32 +01:00
parent 9ed359d307
commit 183c1bf46f
59 changed files with 2513 additions and 390 deletions
+34
View File
@@ -0,0 +1,34 @@
{
"type": "object",
"properties": {
"data": {
"type": "string",
"description": "Any additional data in response",
"example": ""
},
"statusCode": {
"type": "integer",
"description": "Result code of executed process (200 = Success)",
"example": 200
},
"IsSuccessful": {
"type": "boolean",
"description": "An Indicator that the process was successful or not",
"example": true
},
"errorMessage": {
"type": "string",
"description": "Description of status code if process is failed, null if successful",
"example": null
}
},
"required": [
"data",
"statusCode",
"IsSuccessful",
"errorMessage"
],
"xml": {
"name": "SMSResponse"
}
}