How to add API Product to Existing App without changing the Credentials like Consumer Key , Consumer Secret and Attributes .using REST API

Not applicable

I have The Multiple Developer API Products , I wanted to Add multiple Product to a existing Developer App without changing the Consumer Details like Key, Secret and Attributes etc.

I wanted to use APigee's REST API request .

Iam using Python Script to update perform the POST Request .

Iam able to ADD new Developer App using the Python Script but not the able to update the Developer aPP with multiple API Product.

1 1 633
1 REPLY 1

you can do it like this:

POST :mgmtserver/v1/o/:org/developers/:developer/apps/:app/keys/:consumerkey
Content-type: application/json
Authorization: :edge-auth

{
  "apiProducts": [ "Product1", "Product2" ],
}