Get workflow users and their level by supplying a workflow code
Get workflow users and their level by supplying a workflow code
GET {{domain}} /api/WorkFlow/users/{code}
Path Parameters
Name
Type
Description
code
string
The workflow code
Headers
Name
Type
Description
Authorization
string
Bearer Token
client-id
string
The client id of the application
{
"message": "Ok",
"isError": false,
"data": [
{
"email": "email1",
"levelNo": 1
},
{
"email": "email2",
"levelNo": 1
}
]
}Last updated
Was this helpful?