Write your REST Endpoints
A good REST makes every tech stack work efficiently.
API Endpoint
API Response Format
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"success": {
"type": "boolean"
},
"result": {
"type": "object"
},
"resetList": {
"type": "array",
"items": {}
},
"errorMessageKey": {
"type": "string"
}
},
"required": [
"success",
"result",
"resetList",
"errorMessageKey"
]
}Last updated