get
https://api.genability.com/rest/echo/validate
Validate is a helpful method to make sure the data you are inputting is in a valid and recognized format. This helps a lot with dates and times. Integers and arrays can also be validated.
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
Validate a date-time, integer, or array value with Echo before using it in a resource API request.
Use this endpoint to confirm that an input value is in a recognized format. To test credentials or simulated errors instead, see Testing & Debugging Overview.
Only one value can be validated at a time. If multiple validation parameters are sent, the first one is validated.
Resource URI
GET /rest/echo/validateQuery parameters
| Parameter | Type | Description |
|---|---|---|
dateTime | String | Validates an ISO 8601 date or date-time value. Optional. |
integer | Integer | Validates that the value is recognized as an integer. Optional. |
array | Array | Validates that the value is in a recognized array format. Optional. |
Example
GET /rest/echo/validate?dateTime=2011-10-26T12:00:00.0-0400A successful response confirms that the submitted value is valid.
{
"status": "success",
"count": 1,
"type": null,
"results": []
}For the full set of Echo testing endpoints, see Testing & Debugging Overview.
