Get custom alphabets by length
In order to get the character set (together with other attribute–value pairs) of all custom alphabets by length, the length of the alphabets MUST be filter[length] sent as the first HTTP request path attribute together with filter[style] as the second HTTP request path attribute. A preset style filter instead of custom means all preset alphabets.
All matching alphabets are returned from the remote service as list in the JSON response body. Each data object of type: alphabet in the list has the same structure as if it had been requested by its identifier via HTTP request path parameter.
Request endpoint
GET SERVER:PORT/api/alphabets?filter[length]=5&filter[style]=custom
Response status
200
Request headers
Accept:application/vnd.api+json
Content-Type:application/vnd.api+json
Session-Key:SSSSSSSS-SSSS-SSSS-SSSS-SSSSSSSSSSSS
Response headers
Transfer-Encoding:chunked
Connection:keep-alive
Accept:application/vnd.api+json
Cache-Control:no-cache
Date:Tue, 19 Mar 2024 12:57:19 GMT
Content-Type:application/vnd.api+json
Server:nginx/1.25.4
Request body
# intentionally blank
Response body
{
"links": {
"self": "/api/alphabets?filter[length]=5&filter[style]=custom"
},
"data": [
{
"attributes": {
"ascii": true,
"length": 5,
"bytes": 5,
"parity": 87,
"chars": "AEIOU"
},
"id": "UPPER_VOWELS",
"type": "alphabet"
}
]
}
HTTPie example
$ http get SERVER:PORT/api/alphabets?filter[length]=5&filter[style]=custom Accept:application/vnd.api+json Content-Type:application/vnd.api+json Session-Key:SSSSSSSS-SSSS-SSSS-SSSS-SSSSSSSSSSSS