can we update developer app name of an existing app in a company

is there a way to update the developer app name for an existing app in the company.

I have an app test-app with key name test-key with a couple of products subscribed. Now with some new logic in place I need to have a new app name test-xxxx-yyyy-app with key name test-key.

So I wanted to check if there is any feasibility to update existing app name from test-app to test-xxxx-yyyy-app

0 1 234
1 REPLY 1

Hi @MOHAN KIRAN

Yes there is a way and I was recently facing the same issue and I did some research and it is working.

The main concern we have is that the client secret and client key must not change.

But here the thing is we cannot change the developer app once it is created so you will have to create the new developer app with all the details but you will be able to set the same as the client secret and client key using the below Management API call.

(Note: As there cannot be any duplicate client secret and client key , you need to delete the existing developer app)

curl -H 'Content-type:application/json'-u email:password https://api.enterprise.apigee.com/v1/organizations/{organization}/developers/{developer_email_or_id}... -X POST -d \'{
"consumerKey": "key",
"consumerSecret": "secret"
}'

Please find the link below for reference:

https://docs.apigee.com/api-platform/publish/import-existing-consumer-keys-and-secrets