Get 2nd finished info
In order to get the current status of the production line of the 2nd tokens part, the identifier of the tokens object MUST be sent as HTTP request path parameter.
If the JSON response body contains the path data attributes status: finished together with other attribute–value pairs, the production of the 2nd tokens part has been finished. In this case, the tokens data are available for download. A snapshot of the production line is not available.
Request endpoint
GET SERVER:PORT/api/tokens/XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX
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:53:15 GMT
Content-Type:application/vnd.api+json
Server:nginx/1.25.4
Request body
# intentionally blank
Response body
{
"meta": {
"seed": "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX"
},
"links": {
"self": "/api/tokens",
"data": "/api/tokens/XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX/data",
"info": "/api/tokens/XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX"
},
"data": {
"attributes": {
"analysis": "none",
"rate": 3651,
"reachable": "0",
"alphabet": "LOWER_LATIN",
"available": "0",
"partial": false,
"checksum": "000000000000000000000",
"status": "finished",
"filesizes": {
"data": 35151
},
"digits": "3",
"filehashes": {
"data": "f6b7af3fc7ce1a1dd7d0a327e1c87d7a51533cd1da2ec973a6283deadd695697"
},
"size": "8788",
"timestamps": {
"ended": "2024-03-19T12:53:15.357Z",
"started": "2024-03-19T12:53:08.131Z",
"requested": "2024-03-19T12:53:07.954Z",
"finished": "2024-03-19T12:53:15.358Z"
}
},
"id": "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX",
"type": "tokens",
"relationships": {
"payment": {
"data": {
"id": "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX",
"ident": "pi_XXXXXXXXXXXXXXXXXXXXXXXX",
"type": "transaction"
}
}
}
}
}
HTTPie example
$ http get SERVER:PORT/api/tokens/XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX Accept:application/vnd.api+json Content-Type:application/vnd.api+json Session-Key:SSSSSSSS-SSSS-SSSS-SSSS-SSSSSSSSSSSS