GET Test Request Resolver​
GET
/setting/test
Test endpoint to verify REST API connectivity and authentication. Returns a validation message and echoes back all request parameters. Useful for debugging API access.
Authorizations​
ApplicationPasswords
WordPress Application Passwords — use Basic auth with your WordPress username and an application password in the format: username:application_password
Type
API Key (header: Authorization)
Parameters​
Query Parameters
any_param
Any query parameters will be echoed back in the response.
Type
string
Responses​
Test request successful. Returns validation message and echoed parameters.
application/json
JSON
{
"message": "string",
"params": {
"additionalProperties": "string"
}
}