in src/main/java/com/epam/digital/data/platform/auth/generator/client/BpmsRestClient.java [61:66]
public CountResultDto createProcessDefinitionAuthorizations(String bpmsBaseUrl, String token,
List<ProcessDefinitionAuthDto> body) {
log.debug("Create process definition authorizations {}", body);
var response = performPost(bpmsBaseUrl, token, PROCESS_DEFINITION, body);
return deserializeResponse(response.getBody());
}