Participant Service
Participant Type - State Machi...
Get all events
1min
GET
https://{tenantSubdomain}/core/api/v2/participants/config/state-machine/events
This API will get all event with given event details.
Header Parameters
X-COREOS-REQUEST-ID
string
*
X-COREOS-TID
string
*
X-COREOS-ACCESS
string
*
X-COREOS-USERINFO
string
Query Parameters
limit
integer
offset
integer
Responses
200
OK - The request succeeded
EventsAllSuccessResponse
All Of
ErrorResponse +
error
Error
*
request
Request
*
data
EventsResponse[]
400
Bad request - The server is unable to process the request due to something that is perceived to be a client error
ErrorResponse
error
Error
*
request
Request
*
401
Unauthorized - The client's identity is unknown to the server. Verify that you are accessing the correct tenant and that your client ID and client secret are valid on that tenant.
ErrorResponse
error
Error
*
request
Request
*
503
Server error - The server is not ready to handle the request. This could be due to maintenance downtime or system resource constraints.
ErrorResponse
error
Error
*
request
Request
*
Curl
JS
Ruby
Python
1curl --location --globoff 'https://{tenantSubdomain}/core/api/v2/participants/config/state-machine/events' \
2--header 'Accept: application/json' \
3--header 'Content-Type: application/json'
Responses
200
400
401
503
1// OK - The request succeeded
2{
3 "error": {
4 "code": "",
5 "description": "",
6 "additionalInfo": {}
7 },
8 "request": {
9 "uri": "",
10 "method": "",
11 "queryString": "",
12 "body": {}
13 },
14 "data": [
15 {
16 "description": "",
17 "eventType": "",
18 "reasons": [
19 {
20 "reasonCode": "",
21 "description": ""
22 }
23 ],
24 "entities": [
25 {
26 "entityCode": "",
27 "description": "",
28 "name": ""
29 }
30 ],
31 "isSystemDefined": false,
32 "isEnabled": false,
33 "dataValidations": [
34 {
35 "name": "",
36 "description": "",
37 "type": "",
38 "validation": {}
39 }
40 ],
41 "eventCode": ""
42 }
43 ]
44}
Updated 31 May 2024
Did this page help you?