Get event request state
Get event request state
Allows to obtain the status of an event request by its identifier.
Path Parameters
- id string required
Event Request's unique id
Responses
- 200
- 400
- 404
- 500
Request Data successfully retrieved
- application/json
- Schema
- Example (from schema)
- Example
Schema
- id string
Request identifier
- sn int64
Current sequence number of the subject
- state string
Possible values: [
finished
,error
,processing
] - subject_id string
Subject identifier
- success boolean
Value that says if the request has been successful
{
"id": "string",
"sn": 0,
"state": "finished",
"subject_id": "string",
"success": true
}
{
"id": "JyyWIjUa3Ui04oTSN4pJFT8FhmgPRPXzsG4_tIX8IBFg",
"sn": 1,
"state": "finished",
"subject_id": "JoifaSpfenD2bEPeBLvUTWh30brm4tKcvdW8exQnkGoQ",
"success": true
}
Bad Request
Not Found
Internal Server Error
Loading...