Add multiple authorizers

Add multiple authorizers

POST {{domain}}/api/UserLevel/Authorizers

Headers

Name
Type
Description

client-id

string

client id of the application

Authorization

string

Bearer Token

Request Body

Name
Type
Description

object

{ "workFlowCode":"string", "authorizers":[ { "emails":[ "email1", "email2" ], "levelNo": 1 } ] }

{
    "message": "Ok",
    "isError": false,
    "data": {
        "workFlowCode": "string",
        "authorizers": [
            {
                "emails": [
                    "email1",
                    "email2"
                ],
                "levelNo": 1
            }
        ]
    }
}

Last updated

Was this helpful?