Update multiple authorizer's objects on a single request

Update Multiple authorizers

PUT {{domain}}/api/UserLevel/Authorizers

Headers

Name
Type
Description

cleint-id

string

client id of the application

Authorization

string

Bearer Token

Request Body

Name
Type
Description

object

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

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

Last updated

Was this helpful?