Search Response Schema
Phone Validation Request Response Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"requestId": {
"type": "string",
"description": "Unique identifier for the request",
"example": "5a2f8566-d6e3-4fd0-83b4-9a8fb3ed9e62"
},
"id": {
"type": "integer",
"description": "Unique identifier for the record",
"example": 196846
},
"status": {
"type": "string",
"description": "Status of the request",
"enum": ["progress", "completed", "failed"],
"example": "progress"
},
"message": {
"type": "string",
"description": "Message providing additional information about the status",
"example": "Results will be available soon, Use API to retrieve Data"
}
},
"required": ["requestId", "id", "status", "message"],
"additionalProperties": false
}
Last updated