Files
Azeez Muibi 4e8fc9cd34 Updated Docs
2025-03-25 10:10:29 +01:00

58 lines
1.5 KiB
JSON

{
"post": {
"tags": [
"StatusCall"
],
"summary": "Status Call Request",
"description": "This will be used to check the status of a transaction by Simbrella to Firstabank if there is no initial response after 2mins.",
"operationId": "statusCall",
"requestBody": {
"required": true,
"content": {
"application/json": {
"schema": {
"$ref": "../schemas/StatusCallRequest.json"
}
},
"application/xml": {
"schema": {
"$ref": "../schemas/StatusCallRequest.json"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "../schemas/StatusCallRequest.json"
}
}
}
},
"responses": {
"200": {
"description": "Transaction check successful",
"content": {
"application/json": {
"schema": {
"$ref": "../schemas/StatusCallResponse.json"
}
},
"application/xml": {
"schema": {
"$ref": "../schemas/StatusCallResponse.json"
}
}
}
},
"400": {
"description": "Invalid request"
},
"500": {
"description": "Internal server error"
}
},
"security": [
{
"api_key": []
}
]
}
}