OAuth2.0 implementations of Camunda RestAPIs with Keycloak

Hello,
I am trying to implement Keycloak as Authorization Server and integrate with Camunda community server.
I am using client_credentials as grant_type. Here JWT token generates successfully and while I try to initiate process instance I am getting below error
No matching process definition with key: {} and tenant-id: {}. I have delifined by tenant in processes.xml. Below snippet

Hello,
I am trying to implement Keycloak as Authorization Server and integrate with Camunda community server.
I am using client_credentials as grant_type. Here JWT token generates successfully and while I try to initiate process instance I am getting below error
No matching process definition with key: {} and tenant-id: {}. I have delifined by tenant in processes.xml. Below snippet

process-application
xmlns="http://www.camunda.org/schema/1.0/ProcessApplication"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<process-archive name="camunda-archive">
<process-engine>default</process-engine>
<properties>
<property name="isDeleteUponUndeploy">false</property>
<property name="isScanForProcessDefinitions">true</property>
<property name="databaseSchemaUpdate">true</property>
<property name="authorizationEnabled">true</property>
</properties>
</process-archive>
</process-application>